diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-25 03:59:45 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-25 03:59:45 +0000 |
commit | ec963aec4666ff7087ae150cb84398533a78f296 (patch) | |
tree | 4da354e279473e5bd24dccdc93e816b2ebbe076f /community/lz4 | |
parent | f28fb29dd903558bdb2765f573eaf149897e7d1c (diff) |
Tue Mar 25 03:55:20 UTC 2014
Diffstat (limited to 'community/lz4')
-rw-r--r-- | community/lz4/PKGBUILD | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/community/lz4/PKGBUILD b/community/lz4/PKGBUILD index afdbcf888..2ce437990 100644 --- a/community/lz4/PKGBUILD +++ b/community/lz4/PKGBUILD @@ -1,17 +1,18 @@ -# $Id: PKGBUILD 105324 2014-02-04 23:27:29Z seblu $ +# $Id: PKGBUILD 108214 2014-03-24 21:38: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=113 +pkgver=116 pkgrel=1 pkgdesc='Very fast lossless compression algorithm' arch=('i686' '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') @@ -21,6 +22,13 @@ build() { 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" |