mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 08:14:37 +08:00
38 lines
790 B
Bash
38 lines
790 B
Bash
|
# Maintainer: AlmAck
|
||
|
# Arch Maintainer: Sébastien Luttringer
|
||
|
|
||
|
# Contacted by mail, author use svn commit as release version.
|
||
|
# He only push tested release code into svn and support using revision as version
|
||
|
|
||
|
pkgname=lz4
|
||
|
pkgver=122
|
||
|
pkgrel=1
|
||
|
pkgdesc='Very fast lossless compression algorithm'
|
||
|
arch=('x86_64')
|
||
|
url='https://code.google.com/p/lz4/'
|
||
|
license=('GPL2')
|
||
|
makedepends=('svn')
|
||
|
checkdepends=('diffutils')
|
||
|
depends=('glibc')
|
||
|
source=("$pkgname::svn+http://lz4.googlecode.com/svn/trunk/#revision=$pkgver")
|
||
|
md5sums=('SKIP')
|
||
|
|
||
|
build() {
|
||
|
cd $pkgname
|
||
|
make
|
||
|
}
|
||
|
|
||
|
check() {
|
||
|
$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 DESTDIR="$pkgdir"
|
||
|
}
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|