diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2007-04-01 19:01:46 +1000 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2007-04-01 19:01:46 +1000 |
commit | 49651fedfaf01407ec4e2a669f10685994bb1d16 (patch) | |
tree | 2d89c66372066af87e86d75c1f9b164452bef13a /lzo | |
parent | 3c73a8e0ac44169db95592b2a6bfe36cb48c8a2b (diff) | |
download | contrib-49651fedfaf01407ec4e2a669f10685994bb1d16.tar.gz contrib-49651fedfaf01407ec4e2a669f10685994bb1d16.tar.xz |
liblzo: renamed to lzo
Diffstat (limited to 'lzo')
-rw-r--r-- | lzo/.footprint | 22 | ||||
-rw-r--r-- | lzo/.md5sum | 1 | ||||
-rw-r--r-- | lzo/Pkgfile | 25 |
3 files changed, 48 insertions, 0 deletions
diff --git a/lzo/.footprint b/lzo/.footprint new file mode 100644 index 000000000..402469179 --- /dev/null +++ b/lzo/.footprint @@ -0,0 +1,22 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/lzo1.h +-rw-r--r-- root/root usr/include/lzo1a.h +-rw-r--r-- root/root usr/include/lzo1b.h +-rw-r--r-- root/root usr/include/lzo1c.h +-rw-r--r-- root/root usr/include/lzo1f.h +-rw-r--r-- root/root usr/include/lzo1x.h +-rw-r--r-- root/root usr/include/lzo1y.h +-rw-r--r-- root/root usr/include/lzo1z.h +-rw-r--r-- root/root usr/include/lzo2a.h +-rw-r--r-- root/root usr/include/lzo_asm.h +-rw-r--r-- root/root usr/include/lzoconf.h +-rw-r--r-- root/root usr/include/lzodefs.h +-rw-r--r-- root/root usr/include/lzoutil.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/liblzo.so -> liblzo2.so.2.0.0 +-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/lzo/.md5sum b/lzo/.md5sum new file mode 100644 index 000000000..0172603ef --- /dev/null +++ b/lzo/.md5sum @@ -0,0 +1 @@ +6760e5819f4238328709bf93bf10071c lzo-2.02.tar.gz diff --git a/lzo/Pkgfile b/lzo/Pkgfile new file mode 100644 index 000000000..72c10dc0b --- /dev/null +++ b/lzo/Pkgfile @@ -0,0 +1,25 @@ +# Description: A data compression library suitable for data de-/compression in real-time. +# URL: http://www.oberhumer.com/opensource/lzo/ +# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au +# Packager: Younes Hafri, ycrux at club-internet dot fr +# Depends on: + +name=lzo +version=2.02 +release=1 +source=(http://www.oberhumer.com/opensource/lzo/download/lzo-$version.tar.gz) + +build() { + cd lzo-$version + + ./configure \ + --prefix=/usr \ + --enable-shared + + make + make prefix=$PKG/usr install + mv $PKG/usr/include/lzo/* $PKG/usr/include + rm -r $PKG/usr/include/lzo + ln -s liblzo2.so.2.0.0 $PKG/usr/lib/liblzo.so +} + |