diff options
author | tnut <tnut at nutyx dot com> | 2011-10-15 16:45:49 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-10-15 16:45:49 +0200 |
commit | 9613720ce370155ac8968793e93e6736ce9756b0 (patch) | |
tree | 59ef20dfd54f4ae4a5a4f6a04c80d70918661c37 /extra/lzo/Pkgfile | |
parent | c7e758d2662c3c116f351d04dbaa3a9e19ee35e9 (diff) | |
download | nutyx-pakxe-9613720ce370155ac8968793e93e6736ce9756b0.tar.gz nutyx-pakxe-9613720ce370155ac8968793e93e6736ce9756b0.tar.bz2 nutyx-pakxe-9613720ce370155ac8968793e93e6736ce9756b0.tar.xz nutyx-pakxe-9613720ce370155ac8968793e93e6736ce9756b0.zip |
lzo dans extra
Diffstat (limited to 'extra/lzo/Pkgfile')
-rwxr-xr-x | extra/lzo/Pkgfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/extra/lzo/Pkgfile b/extra/lzo/Pkgfile new file mode 100755 index 000000000..2e7da82e8 --- /dev/null +++ b/extra/lzo/Pkgfile @@ -0,0 +1,21 @@ +# Description: Librairie de compression de données permettant un bon taux de compression/décompression en temps réel +# URL: http://www.oberhumer.com/opensource/lzo +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=lzo +version=2.04 +release=1 +source=( http://www.oberhumer.com/opensource/$name/download/$name-$version.tar.gz) + + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --enable-shared + make + make DESTDIR=$PKG install +} + |