blob: cf3893406ed020ac7999c2c9d6492f4532233b2d (
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
|
# Contributor: Oleg Titov <oleg.titov@gmail.com>
# Maintainer: Oleg Titov <oleg.titov@gmail.com>
pkgname=libzim
pkgver=8.2.0
_testing_suite_ver=0.4
pkgrel=1
pkgdesc="Reference implementation of the ZIM file format"
url="https://openzim.org/"
arch="all"
license="GPL-2.0-or-later"
options="!check" #temporary disable tests
makedepends="
icu-dev
meson
xapian-core-dev
xz-dev
zlib-dev
zstd-dev
"
checkdepends="
cython
gtest-dev
python3-dev
"
subpackages="$pkgname-dev $pkgname-doc"
source="$pkgname-$pkgver-2.tar.gz::https://github.com/openzim/libzim/archive/$pkgver.tar.gz
https://github.com/openzim/zim-testing-suite/releases/download/v$_testing_suite_ver/zim-testing-suite-$_testing_suite_ver.tar.gz
"
build() {
abuild-meson . output \
-Dtest_data_dir="$srcdir/zim-testing-suite/data"
meson compile -C output
}
check() {
SKIP_BIG_MEMORY_TEST=1 meson test --no-rebuild --print-errorlogs -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname/" README.md
}
sha512sums="
4554a9237f5167f6f94aad76ef0e847e949c47c6ee2a89bbd6e587da3b3a3e2d0a8b2d03f7a0fbde0e0dc96fb61bf8c115b3ef3cbd7eff5e880f152bee9b29f0 libzim-8.2.0-2.tar.gz
be2143c5bfab0b247dfbfe3e5c2bb1b58d786e5802be4f4a62ce694e6467f7713c5ccc1e1d4a933227cfc07016fc9d6ae1249d2d3cb29237a28750922dc671cb zim-testing-suite-0.4.tar.gz
"
|