mirror of
https://github.com/bertptrs/aur.git
synced 2025-12-25 12:40:30 +01:00
36 lines
956 B
Bash
36 lines
956 B
Bash
# Maintainer: Bert Peters <bert@bertptrs.nl>
|
|
pkgname=simdjson
|
|
epoch=1
|
|
pkgver=3.9.1
|
|
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"
|
|
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=('a4b6e7cd83176e0ccb107ce38521da40a8df41c2d3c90566f2a0af05b0cd05c4')
|
|
|
|
build() {
|
|
cmake -B build -S "$pkgname-$pkgver" \
|
|
-DBUILD_SHARED_LIBS='On' \
|
|
-DCMAKE_BUILD_TYPE='None' \
|
|
-DCMAKE_INSTALL_PREFIX='/usr' \
|
|
-Wno-dev
|
|
cmake --build build
|
|
}
|
|
|
|
# Running tests requires enabling developer mode, which greatly increases the
|
|
# required compilation, so we don't.
|
|
#
|
|
# Also tests refuse to compile with current GCC
|
|
# check() {
|
|
# cd "$pkgname-$pkgver"
|
|
# make test
|
|
# }
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir/" cmake --install build
|
|
}
|