blob: 20012249a6b7dac3a95d3e2c7c65e2b5c4f87eca (
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
|
# Maintainer (AUR): hashworks <mail@hashworks.net>
# parabola changes and rationale:
# - No changes
pkgname=kiwix-lib
pkgver=8.2.2
pkgrel=1
pkgdesc="Library providing the Kiwix software core"
license=('GPL3')
arch=('armv7h' 'i686' 'x86_64')
depends=('libzim' 'pugixml' 'mustache=3.2.1' 'xapian-core' 'aria2' 'libmicrohttpd')
makedepends=('meson' 'gtest')
url='https://github.com/kiwix/kiwix-lib'
source=("https://github.com/kiwix/kiwix-lib/archive/${pkgver}.tar.gz")
sha256sums=(dc8d454d79b175c0b9f3c4d268db17da8e80fcd8df3987af0f58cb399bd5da61)
build() {
cd "${pkgname}-${pkgver}"
# We want to ignore xapian ABI version mismatches
arch-meson build -Dwerror=false
ninja -C build
}
check() {
cd "${pkgname}-${pkgver}/build"
ninja meson-test
}
package() {
cd "${pkgname}-${pkgver}/build"
DESTDIR="${pkgdir}" ninja install
}
|