blob: 28787ac3068fa3a99ed892f808493cc782cb0853 (
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
53
54
55
56
57
58
59
60
|
# -*- sh -*-
# Maintainer: Klaus Alexander Seistrup <$(echo 0x1fd+d59decfa=40 | tr 0-9+a-f=x ka-i@p-u.l)>
pkgname='kanzi-git'
_pkgname="${pkgname/-git}"
pkgver=2.3.0.r228.g4f2fad4e
pkgrel=2
pkgdesc='Modern, modular, portable and efficient lossless data compressor and decompressor (development version)'
arch=('aarch64' 'x86_64')
url='https://github.com/flanglet/kanzi-cpp'
source=("$_pkgname::git+$url.git")
license=('Apache-2.0') # SPDX-License-Identifier: Apache-2.0
provides=("$_pkgname")
conflicts=("${provides[@]}")
depends=('gcc-libs' 'glibc')
makedepends=('cmake' 'git')
prepare() {
cd "$srcdir/$_pkgname/src"
git clean -dfx
}
pkgver() {
cd "$srcdir/$_pkgname"
git describe --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$_pkgname/src"
test -n "$LTOFLAGS" && export CXXFLAGS="$CXXFLAGS $LTOFLAGS"
test -d build && rm -rf build
mkdir -p build \
&& cd build \
&& cmake .. \
&& make kanzi # We do not need the shared library and the tests
cd "$srcdir/$_pkgname"
gunzip kanzi.1.gz
}
package() {
cd "$srcdir/$_pkgname"
install -vDm0755 -t "$pkgdir/usr/bin/" \
src/build/kanzi
install -vDm0644 -t "$pkgdir/usr/share/man/man1/" \
kanzi.1
install -vDm0644 -t "$pkgdir/usr/share/doc/$pkgname/" \
{README,SECURITY}.md
}
sha256sums=('SKIP')
# eof
|