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

upgpkg: simdjson 1:3.9.0-1

upstream release
This commit is contained in:
2024-04-05 19:06:35 +02:00
parent 3f7a0537b2
commit 8b493e953c
2 changed files with 9 additions and 9 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 = 3.8.0
pkgrel = 2
pkgver = 3.9.0
pkgrel = 1
epoch = 1
url = https://github.com/simdjson/simdjson
arch = x86_64
license = Apache-2.0
makedepends = cmake
depends = gcc-libs
source = simdjson-3.8.0.tar.gz::https://github.com/simdjson/simdjson/archive/v3.8.0.tar.gz
sha256sums = e28e3f46f0012d405b67de6c0a75e8d8c9a612b0548cb59687822337d73ca78b
source = simdjson-3.9.0.tar.gz::https://github.com/simdjson/simdjson/archive/v3.9.0.tar.gz
sha256sums = dbd752eb2ae051b6de3cb7e87ceb27a7f4331153d4d20d29e574350e9cab9732
pkgname = simdjson

View File

@@ -1,8 +1,8 @@
# Maintainer: Bert Peters <bert@bertptrs.nl>
pkgname=simdjson
epoch=1
pkgver=3.8.0
pkgrel=2
pkgver=3.9.0
pkgrel=1
pkgdesc="A C++ library to see how fast we can parse JSON with complete validation."
arch=('x86_64')
url="https://github.com/simdjson/simdjson"
@@ -10,7 +10,7 @@ license=('Apache-2.0')
depends=(gcc-libs)
makedepends=(cmake)
source=("$pkgname-$pkgver.tar.gz::https://github.com/simdjson/simdjson/archive/v$pkgver.tar.gz")
sha256sums=('e28e3f46f0012d405b67de6c0a75e8d8c9a612b0548cb59687822337d73ca78b')
sha256sums=('dbd752eb2ae051b6de3cb7e87ceb27a7f4331153d4d20d29e574350e9cab9732')
build() {
cmake -B build -S "$pkgname-$pkgver" \
@@ -18,7 +18,7 @@ build() {
-DCMAKE_BUILD_TYPE='None' \
-DCMAKE_INSTALL_PREFIX='/usr' \
-Wno-dev
make -C build
cmake --build build
}
# Running tests requires enabling developer mode, which greatly increases the
@@ -31,5 +31,5 @@ build() {
# }
package() {
make -C build DESTDIR="$pkgdir/" install
DESTDIR="$pkgdir/" cmake --install build
}