blob: 70c8319819d8129f1b3260d5053a20f51c37a38e (
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
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=zim-tools-git
pkgver=3.1.2.r5.g56c3604
pkgrel=1
pkgdesc="Various ZIM command line tools"
arch=('i686' 'x86_64')
url="https://github.com/openzim/zim-tools"
license=('GPL')
depends=('glibc' 'docopt' 'file' 'gumbo-parser' 'libzim')
makedepends=('git' 'meson' 'mustache')
provides=("zim-tools=$pkgver")
conflicts=('zim-tools')
source=("git+https://github.com/openzim/zim-tools.git")
sha256sums=('SKIP')
pkgver() {
cd "zim-tools"
_tag=$(git tag -l --sort -v:refname | sed '/rc[0-9]*/d' | head -n1)
_rev=$(git rev-list --count $_tag..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^v//'
}
build() {
cd "zim-tools"
meson setup \
--buildtype=plain \
--prefix="/usr" \
--sbindir="bin" \
"_build"
meson compile -C "_build"
}
check() {
cd "zim-tools"
#meson test -C "_build"
}
package() {
cd "zim-tools"
meson install -C "_build" --destdir "$pkgdir"
}
|