# Maintainer: Bert Peters pkgname=simdjson pkgver=0.4.4 pkgrel=1 pkgdesc="A C++ library to see how fast we can parse JSON with complete validation." arch=('x86_64') url="https://github.com/lemire/simdjson" license=('APACHE') depends=(gcc-libs) makedepends=(cmake) source=("$pkgname-$pkgver.tar.gz::https://github.com/lemire/simdjson/archive/v$pkgver.tar.gz") sha256sums=('736f1f5b97bd3c07b2f3377e7987510b7f85a88d31d349c3dca415e7a9a719d0') build() { cd "$pkgname-$pkgver" cmake . -DCMAKE_INSTALL_PREFIX="/usr/" -DSIMDJSON_JUST_LIBRARY=On make } package() { cd "$pkgname-$pkgver" make DESTDIR="$pkgdir/" install }