aboutsummaryrefslogtreecommitdiffstats
path: root/testing/marisa-trie/APKBUILD
blob: 3319201868d483808e2d7e1e99ab5f29b232cc17 (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
# 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() {
	./configure \
		--prefix=/usr \
		--disable-static \
		--enable-sse2
	make
}

check() {
	make check
}

package() {
	DESTDIR="$pkgdir" make install
}

sha512sums="62975a2dacd2a1072c990cd490f866cd5483c069c94a4706baf3ffc21ec43991583a8ef8721c3b841617b0654cbb894698c19759ff12b8887b6fd28939dfb547  marisa-trie-0.2.5.tar.gz"