diff options
Diffstat (limited to 'community/lz4/PKGBUILD')
-rw-r--r-- | community/lz4/PKGBUILD | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/community/lz4/PKGBUILD b/community/lz4/PKGBUILD index e305c8c70..c1ebdfefc 100644 --- a/community/lz4/PKGBUILD +++ b/community/lz4/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 96146 2013-08-20 10:35:29Z seblu $ +# $Id: PKGBUILD 97016 2013-09-10 10:58:05Z seblu $ # 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=102 -pkgrel=2 +pkgver=104 +pkgrel=1 pkgdesc='Very fast lossless compression algorithm' arch=('i686' 'x86_64') url='https://code.google.com/p/lz4/' @@ -18,11 +18,12 @@ md5sums=('SKIP') build() { cd $pkgname - make + make lz4 lz4c } package() { cd $pkgname + install -Dm755 lz4 "$pkgdir/usr/bin/lz4" install -Dm755 lz4c "$pkgdir/usr/bin/lz4c" install -Dm644 cmake/pack/release_COPYING.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } |