aboutsummaryrefslogtreecommitdiffstats
path: root/testing/marisa-trie/APKBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/marisa-trie/APKBUILD')
-rw-r--r--testing/marisa-trie/APKBUILD42
1 files changed, 0 insertions, 42 deletions
diff --git a/testing/marisa-trie/APKBUILD b/testing/marisa-trie/APKBUILD
deleted file mode 100644
index 6fa9102c618..00000000000
--- a/testing/marisa-trie/APKBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# Contributor: Bart Ribbers <bribbers@disroot.org>
-# Maintainer: Bart Ribbers <bribbers@disroot.org>
-pkgname=marisa-trie
-pkgver=0.2.5
-pkgrel=0
-pkgdesc="Static and space-efficient trie data structure library"
-url="https://github.com/s-yata/marisa-trie"
-arch="all"
-license="BSD-2-Clause"
-makedepends="autoconf automake libtool"
-subpackages="$pkgname-dev"
-source="$pkgname-$pkgver.tar.gz::https://github.com/s-yata/marisa-trie/archive/v$pkgver.tar.gz"
-
-prepare() {
- default_prepare
-
- autoreconf -i
-}
-
-build() {
- case "$CARCH" in
- x86|x86_64) sse2="--enable-sse2" ;;
- *) sse2="--disable-sse2" ;;
- esac
-
- ./configure \
- --prefix=/usr \
- --disable-static \
- $sse2
-
- make
-}
-
-check() {
- make check
-}
-
-package() {
- DESTDIR="$pkgdir" make install
-}
-
-sha512sums="62975a2dacd2a1072c990cd490f866cd5483c069c94a4706baf3ffc21ec43991583a8ef8721c3b841617b0654cbb894698c19759ff12b8887b6fd28939dfb547 marisa-trie-0.2.5.tar.gz"