51 lines
1.1 KiB
Text
51 lines
1.1 KiB
Text
# Maintainer: Sébastien Luttringer
|
|
|
|
pkgname=lz4
|
|
epoch=1
|
|
pkgver=1.9.4
|
|
pkgrel=1
|
|
pkgdesc='Extremely fast compression algorithm'
|
|
arch=('x86_64')
|
|
url='https://lz4.github.io/lz4/'
|
|
license=('GPL2')
|
|
makedepends=('git')
|
|
checkdepends=('diffutils')
|
|
depends=('glibc')
|
|
source=("git+https://github.com/lz4/lz4.git#tag=v$pkgver")
|
|
sha256sums=('SKIP')
|
|
|
|
prepare() {
|
|
cd $pkgname
|
|
# apply patch from the source array (should be a pacman feature)
|
|
local src
|
|
for src in "${source[@]}"; do
|
|
src="${src%%::*}"
|
|
src="${src##*/}"
|
|
[[ $src = *.patch ]] || continue
|
|
msg2 "Applying patch $src..."
|
|
patch -Np1 < "../$src"
|
|
done
|
|
}
|
|
|
|
build() {
|
|
# do not use the main makefile, it calls sub make with -e
|
|
# exported CLFAGS by makepkg break the version. see FS#50071
|
|
cd $pkgname
|
|
make -C lib PREFIX=/usr
|
|
make -C programs PREFIX=/usr lz4 lz4c
|
|
}
|
|
|
|
check() {
|
|
rm -f passwd.lz4
|
|
$pkgname/programs/lz4 /etc/passwd passwd.lz4
|
|
$pkgname/programs/lz4 -d passwd.lz4 passwd
|
|
diff -q /etc/passwd passwd
|
|
rm passwd
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
make install PREFIX=/usr DESTDIR="$pkgdir"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|