blob: ca2f42d58aa6d70b727baef170ce5a0cebab436e (
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
|
# Contributor: Oleg Titov <oleg.titov@gmail.com>
# Maintainer: Oleg Titov <oleg.titov@gmail.com>
pkgname=libzim
pkgver=6.1.1
pkgrel=0
pkgdesc="Reference implementation of the ZIM file format"
url="https://openzim.org/"
arch="all !mips !mips64" # tests crash
license="GPL-2.0-or-later"
makedepends="
icu-dev
libexecinfo-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.tar.gz::https://github.com/openzim/libzim/archive/$pkgver.tar.gz
cython-not-cython3.patch
"
build() {
LDFLAGS="$LDFLAGS -lexecinfo"
meson \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--buildtype=plain \
. output
ninja -C output
}
check() {
ninja -C output test
}
package() {
DESTDIR="$pkgdir" ninja -C output install
install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname/" README.md
}
sha512sums="9481efd8cabe895b5048f40339514053377e8a6a40259dea5c726f62ea738edb97c9fca1845f155c35cd60ae12f85dc1c10f793da4decc890a2d5f3a7f6e8cbc libzim-6.1.1.tar.gz
e2d2e749a6764c0002c123b988b24494ff76547542f17753d04b48f90785e4a92a5bb96a1840e0ebd661a727ecc1eb050679ae0ba1b3fda99410d09ac8e28f27 cython-not-cython3.patch"
|