aboutsummaryrefslogtreecommitdiffstats
path: root/main/snappy/APKBUILD
blob: f8eb659a0754b6f81526e01dd336fb2bc3bea703 (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
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=snappy
pkgver=1.1.4
pkgrel=3
pkgdesc="Fast compression and decompression library"
url="http://google.github.io/snappy/"
arch="all"
license="BSD-3-Clause"
subpackages="$pkgname-dbg $pkgname-dev $pkgname-doc"
source="https://github.com/google/snappy/releases/download/$pkgver/snappy-$pkgver.tar.gz
	fix-UnalignedCopy64.patch
	"
[ "$CARCH" = "armhf" ] && options="!check"     # does not pass testsuite on armhf

builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	./configure \
		--prefix=/usr \
		--disable-static
	make
}

check() {
	cd "$builddir"
	make check
}

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

sha512sums="4f522f1d541e3f00d82ccaf6dda5c6ede28d4db19c53717003d8057261fe8630516ed6ff2a28615da032e0de9c6200b560ed5fce4f8714df9916d50d6a7c2178  snappy-1.1.4.tar.gz
a086dbdfe2cb21419b33c2f8a2739224a8e843f2c6a51715100c723b9fbd9aed14bcfa791c20dae785b33ac1d1cf4812ed2c5c5d4058c5b8e56a0e004e9a8c60  fix-UnalignedCopy64.patch"