diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2006-12-05 06:20:51 +1100 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2006-12-05 06:20:51 +1100 |
commit | 3ed5206ad791f4ff699e95b0f807f8e93ad0a0d8 (patch) | |
tree | 9f25279dbdef075d9ebe7b966b59e4dbb3e9332b /libucl | |
parent | 19623e34808edb9ac683281d07b293c43492b24b (diff) | |
download | contrib-3ed5206ad791f4ff699e95b0f807f8e93ad0a0d8.tar.gz contrib-3ed5206ad791f4ff699e95b0f807f8e93ad0a0d8.tar.xz |
libucl: initial commit
Diffstat (limited to 'libucl')
-rw-r--r-- | libucl/.footprint | 12 | ||||
-rw-r--r-- | libucl/.md5sum | 1 | ||||
-rw-r--r-- | libucl/Pkgfile | 21 |
3 files changed, 34 insertions, 0 deletions
diff --git a/libucl/.footprint b/libucl/.footprint new file mode 100644 index 000000000..37fa5dee3 --- /dev/null +++ b/libucl/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/ucl/ +-rw-r--r-- root/root usr/include/ucl/ucl.h +-rw-r--r-- root/root usr/include/ucl/ucl_asm.h +-rw-r--r-- root/root usr/include/ucl/uclconf.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libucl.a +-rwxr-xr-x root/root usr/lib/libucl.la +lrwxrwxrwx root/root usr/lib/libucl.so -> libucl.so.1.0.0 +lrwxrwxrwx root/root usr/lib/libucl.so.1 -> libucl.so.1.0.0 +-rwxr-xr-x root/root usr/lib/libucl.so.1.0.0 diff --git a/libucl/.md5sum b/libucl/.md5sum new file mode 100644 index 000000000..ef1d345f4 --- /dev/null +++ b/libucl/.md5sum @@ -0,0 +1 @@ +852bd691d8abc75b52053465846fba34 ucl-1.03.tar.gz diff --git a/libucl/Pkgfile b/libucl/Pkgfile new file mode 100644 index 000000000..3934396d9 --- /dev/null +++ b/libucl/Pkgfile @@ -0,0 +1,21 @@ +# Description: A portable lossless data compression library written in ANSI C. +# URL: http://www.oberhumer.com/opensource/ucl/ +# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au +# Packager: Younes Hafri ycrux at club-internet dot fr +# Depends on: + +name=libucl +version=1.03 +release=1 +source=(http://www.oberhumer.com/opensource/ucl/download/ucl-$version.tar.gz) + +build() { + cd ucl-$version + + ./configure \ + --prefix=/usr \ + --enable-shared + + make && make prefix=$PKG/usr install +} + |