diff options
author | tnut <thierryn1 at hispeed dot ch> | 2012-05-12 12:23:34 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2012-05-12 12:23:34 +0200 |
commit | f5b0e4f501f5afb80626ac83777e439eb0c66624 (patch) | |
tree | d6a23a9e290b45f144f174fa6098e6ef860b291a /lzo/Pkgfile | |
parent | 5833beaf803cf6d1ca6eb07ef2f31f22b8e30e69 (diff) | |
download | nutyx-pakxe-f5b0e4f501f5afb80626ac83777e439eb0c66624.tar.gz nutyx-pakxe-f5b0e4f501f5afb80626ac83777e439eb0c66624.tar.bz2 nutyx-pakxe-f5b0e4f501f5afb80626ac83777e439eb0c66624.tar.xz nutyx-pakxe-f5b0e4f501f5afb80626ac83777e439eb0c66624.zip |
lzo, ajout
Diffstat (limited to 'lzo/Pkgfile')
-rwxr-xr-x | lzo/Pkgfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lzo/Pkgfile b/lzo/Pkgfile new file mode 100755 index 000000000..2e7da82e8 --- /dev/null +++ b/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 +} + |