summaryrefslogtreecommitdiffstats
path: root/base/lzo
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2011-02-01 21:11:59 +0100
committertnut <thierryn1 at hispeed dot ch>2011-02-01 21:11:59 +0100
commit6ea9ebeb6df23233130b56d1e73c3d566437fec9 (patch)
tree1c8876899d6193c0abd345368b88657169298de3 /base/lzo
parent25a80bf59a71506d4ed73b0be52154c76e54fb47 (diff)
downloadnutyx-pakxe-6ea9ebeb6df23233130b56d1e73c3d566437fec9.tar.gz
nutyx-pakxe-6ea9ebeb6df23233130b56d1e73c3d566437fec9.tar.bz2
nutyx-pakxe-6ea9ebeb6df23233130b56d1e73c3d566437fec9.tar.xz
nutyx-pakxe-6ea9ebeb6df23233130b56d1e73c3d566437fec9.zip
lzo dans base, pas de dépendances
Diffstat (limited to 'base/lzo')
-rw-r--r--base/lzo/.footprint22
-rw-r--r--base/lzo/.md5sum1
-rwxr-xr-xbase/lzo/Pkgfile21
3 files changed, 44 insertions, 0 deletions
diff --git a/base/lzo/.footprint b/base/lzo/.footprint
new file mode 100644
index 000000000..7b8284d97
--- /dev/null
+++ b/base/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/base/lzo/.md5sum b/base/lzo/.md5sum
new file mode 100644
index 000000000..f17691661
--- /dev/null
+++ b/base/lzo/.md5sum
@@ -0,0 +1 @@
+0c3d078c2e8ea5a88971089a2f02a726 lzo-2.03.tar.gz
diff --git a/base/lzo/Pkgfile b/base/lzo/Pkgfile
new file mode 100755
index 000000000..7d6edba49
--- /dev/null
+++ b/base/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.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
+}
+