blob: a32a56feaf469e1e7e992f4f0304272a0416209e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#!/usr/bin/env bash
# shellcheck disable=SC2034
# shellcheck disable=SC2154
# The PKGBUILD for StringZilla.
# Maintainer: Matheus <matheusgwdl@protonmail.com>
# Contributor: Matheus <matheusgwdl@protonmail.com>
readonly _pkgname="StringZilla"
pkgname="stringzilla"
pkgver="3.10.10"
pkgrel="1"
pkgdesc="Up to 10x faster strings for C, C++, Python, Rust and Swift."
arch=("x86_64")
url="https://github.com/ashvardanian/${_pkgname}"
license=("Apache-2.0")
makedepends=("cmake")
source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha512sums=("8009fe2e25c514628a299a74716e8fd6aa298fc4846495dff4f6c22d67c0a7d4062bfa74e8c18a20e1aa95d233fdedbd14f788881fcd4e2ce48ead9596c9d62b")
_compile()
{
cmake -B "${srcdir}"/"${_pkgname}"-"${pkgver}"/build/ \
-D CMAKE_BUILD_TYPE=None \
-D CMAKE_INSTALL_PREFIX=/usr/ \
-D STRINGZILLA_BUILD_BENCHMARK=OFF \
-D STRINGZILLA_BUILD_SHARED=ON \
-D STRINGZILLA_BUILD_TEST="$1" \
-D STRINGZILLA_INCLUDE_INSTALL_DIR=/usr/include/ \
-D STRINGZILLA_INSTALL=ON \
-S "${srcdir}"/"${_pkgname}"-"${pkgver}"/ \
-Wno-dev
cmake --build "${srcdir}"/"${_pkgname}"-"${pkgver}"/build/
}
build()
{
for build_tests in "OFF" "ON"; do
_compile "${build_tests}"
done
}
check()
{
_compile "ON"
# TODO Last test fails.
# ctest --output-on-failure --test-dir "${srcdir}"/"${_pkgname}"-"${pkgver}"/build/
cd "${srcdir}"/"${_pkgname}"-"${pkgver}"/build/ || exit 1
./stringzilla_test_cpp11
./stringzilla_test_cpp14
./stringzilla_test_cpp17
./stringzilla_test_cpp20
./stringzilla_test_cpp20_x86_serial
./stringzilla_test_cpp20_x86_avx2
# ./stringzilla_test_cpp20_x86_avx512
_compile "OFF"
}
package()
{
# Assure that the directories exist.
mkdir -p "${pkgdir}"/usr/share/doc/"${pkgname}"/
mkdir -p "${pkgdir}"/usr/share/licenses/"${pkgname}"/
# Install the software.
DESTDIR="${pkgdir}"/ cmake --install "${srcdir}"/"${_pkgname}"-"${pkgver}"/build/
# Install the documentation.
install -Dm644 "${srcdir}"/"${_pkgname}"-"${pkgver}"/README.md "${pkgdir}"/usr/share/doc/"${pkgname}"/
# Install the license.
install -Dm644 "${srcdir}"/"${_pkgname}"-"${pkgver}"/LICENSE "${pkgdir}"/usr/share/licenses/"${pkgname}"/
}
|