summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-11 20:59:01 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-11 20:59:01 +0200
commit5730f13b8a431ba5791ed6bee408e5102fe82fbe (patch)
treeaa42a6cbef43b4dc5ce1f1d420ef95997b650b27
parent207013bc5a23f85ca601e821d7c894b0a914b75d (diff)
downloadnutyx-pakxe-5730f13b8a431ba5791ed6bee408e5102fe82fbe.tar.gz
nutyx-pakxe-5730f13b8a431ba5791ed6bee408e5102fe82fbe.tar.bz2
nutyx-pakxe-5730f13b8a431ba5791ed6bee408e5102fe82fbe.tar.xz
nutyx-pakxe-5730f13b8a431ba5791ed6bee408e5102fe82fbe.zip
Ajout de lzo#2.03-1
-rw-r--r--extra/lzo/.footprint22
-rw-r--r--extra/lzo/.md5sum1
-rwxr-xr-xextra/lzo/Pkgfile21
3 files changed, 44 insertions, 0 deletions
diff --git a/extra/lzo/.footprint b/extra/lzo/.footprint
new file mode 100644
index 000000000..7b8284d97
--- /dev/null
+++ b/extra/lzo/.footprint
@@ -0,0 +1,22 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/lzo/
+-rw-r--r-- root/root usr/include/lzo/lzo1.h
+-rw-r--r-- root/root usr/include/lzo/lzo1a.h
+-rw-r--r-- root/root usr/include/lzo/lzo1b.h
+-rw-r--r-- root/root usr/include/lzo/lzo1c.h
+-rw-r--r-- root/root usr/include/lzo/lzo1f.h
+-rw-r--r-- root/root usr/include/lzo/lzo1x.h
+-rw-r--r-- root/root usr/include/lzo/lzo1y.h
+-rw-r--r-- root/root usr/include/lzo/lzo1z.h
+-rw-r--r-- root/root usr/include/lzo/lzo2a.h
+-rw-r--r-- root/root usr/include/lzo/lzo_asm.h
+-rw-r--r-- root/root usr/include/lzo/lzoconf.h
+-rw-r--r-- root/root usr/include/lzo/lzodefs.h
+-rw-r--r-- root/root usr/include/lzo/lzoutil.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/liblzo2.a
+-rwxr-xr-x root/root usr/lib/liblzo2.la
+lrwxrwxrwx root/root usr/lib/liblzo2.so -> liblzo2.so.2.0.0
+lrwxrwxrwx root/root usr/lib/liblzo2.so.2 -> liblzo2.so.2.0.0
+-rwxr-xr-x root/root usr/lib/liblzo2.so.2.0.0
diff --git a/extra/lzo/.md5sum b/extra/lzo/.md5sum
new file mode 100644
index 000000000..f17691661
--- /dev/null
+++ b/extra/lzo/.md5sum
@@ -0,0 +1 @@
+0c3d078c2e8ea5a88971089a2f02a726 lzo-2.03.tar.gz
diff --git a/extra/lzo/Pkgfile b/extra/lzo/Pkgfile
new file mode 100755
index 000000000..013631e90
--- /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
+# Depends on: slib
+
+name=lzo
+version=2.03
+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
+}