1
0
mirror of https://github.com/bertptrs/aur.git synced 2025-12-25 20:40:32 +01:00

Update to 0.4.0

This commit is contained in:
2020-06-24 19:30:19 +02:00
parent dac6512418
commit 983dd05137
2 changed files with 6 additions and 11 deletions

View File

@@ -1,14 +1,14 @@
pkgbase = simdjson
pkgdesc = A C++ library to see how fast we can parse JSON with complete validation.
pkgver = 0.3.1
pkgver = 0.4.0
pkgrel = 1
url = https://github.com/lemire/simdjson
arch = x86_64
license = APACHE
makedepends = cmake
depends = gcc-libs
source = simdjson-0.3.1.tar.gz::https://github.com/lemire/simdjson/archive/v0.3.1.tar.gz
sha256sums = 9ae0b77139d6b854fe4d25db5e525762d3f7880f7146329767078397b6ed2f94
source = simdjson-0.4.0.tar.gz::https://github.com/lemire/simdjson/archive/v0.4.0.tar.gz
sha256sums = 4163d5acfa4f55ef0e0ec1267a5172beed4b1849e13a6b42f6231d471141bffd
pkgname = simdjson

View File

@@ -1,6 +1,6 @@
# Maintainer: Bert Peters <bert@bertptrs.nl>
pkgname=simdjson
pkgver=0.3.1
pkgver=0.4.0
pkgrel=1
pkgdesc="A C++ library to see how fast we can parse JSON with complete validation."
arch=('x86_64')
@@ -9,19 +9,14 @@ license=('APACHE')
depends=(gcc-libs)
makedepends=(cmake)
source=("$pkgname-$pkgver.tar.gz::https://github.com/lemire/simdjson/archive/v$pkgver.tar.gz")
sha256sums=('9ae0b77139d6b854fe4d25db5e525762d3f7880f7146329767078397b6ed2f94')
sha256sums=('4163d5acfa4f55ef0e0ec1267a5172beed4b1849e13a6b42f6231d471141bffd')
build() {
cd "$pkgname-$pkgver"
cmake . -DCMAKE_INSTALL_PREFIX="/usr/"
cmake . -DCMAKE_INSTALL_PREFIX="/usr/" -DSIMDJSON_JUST_LIBRARY=On
make
}
check() {
cd "$pkgname-$pkgver"
make test
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install