diff options
author | Matt Housh <jaeger@morpheus.net> | 2012-11-21 11:12:43 -0600 |
---|---|---|
committer | Matt Housh <jaeger@morpheus.net> | 2012-11-21 11:12:43 -0600 |
commit | f58de0877c76c9d2faeedc5a37e9a083595bfbe9 (patch) | |
tree | 7aaecd27b8ddf86d5a22917e9227f2437d601b30 /xz-32 | |
parent | 7fe949bb83be5abb275a8a7f7fe77b88ea997592 (diff) | |
download | compat-32-f58de0877c76c9d2faeedc5a37e9a083595bfbe9.tar.gz compat-32-f58de0877c76c9d2faeedc5a37e9a083595bfbe9.tar.xz |
Initial import of *-32 ports for CRUX 3.0
Diffstat (limited to 'xz-32')
-rw-r--r-- | xz-32/.32bit | 0 | ||||
-rw-r--r-- | xz-32/.footprint | 10 | ||||
-rw-r--r-- | xz-32/.md5sum | 1 | ||||
-rw-r--r-- | xz-32/Pkgfile | 21 |
4 files changed, 32 insertions, 0 deletions
diff --git a/xz-32/.32bit b/xz-32/.32bit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/xz-32/.32bit diff --git a/xz-32/.footprint b/xz-32/.footprint new file mode 100644 index 00000000..c22f671f --- /dev/null +++ b/xz-32/.footprint @@ -0,0 +1,10 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib32/ +-rw-r--r-- root/root usr/lib32/liblzma.a +-rwxr-xr-x root/root usr/lib32/liblzma.la +lrwxrwxrwx root/root usr/lib32/liblzma.so -> liblzma.so.5.0.4 +lrwxrwxrwx root/root usr/lib32/liblzma.so.0 -> liblzma.so.5.0.4 +lrwxrwxrwx root/root usr/lib32/liblzma.so.5 -> liblzma.so.5.0.4 +-rwxr-xr-x root/root usr/lib32/liblzma.so.5.0.4 +drwxr-xr-x root/root usr/lib32/pkgconfig/ +-rw-r--r-- root/root usr/lib32/pkgconfig/liblzma.pc diff --git a/xz-32/.md5sum b/xz-32/.md5sum new file mode 100644 index 00000000..75cd1d80 --- /dev/null +++ b/xz-32/.md5sum @@ -0,0 +1 @@ +741cd3a5f64b23b7bac56ec5b2258715 xz-5.0.4.tar.bz2 diff --git a/xz-32/Pkgfile b/xz-32/Pkgfile new file mode 100644 index 00000000..51a3a2d6 --- /dev/null +++ b/xz-32/Pkgfile @@ -0,0 +1,21 @@ +# Description: Compression utility using the lzma algorithm, successor of lzma-utils +# URL: http://tukaani.org/xz/ +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=xz-32 +version=5.0.4 +release=1 +source=(http://tukaani.org/xz/xz-$version.tar.bz2) + +build() { +cd xz-$version + ./configure --prefix=/usr \ + --libdir=/usr/lib32 \ + --disable-nls + make + make DESTDIR=$PKG install + + ln -s liblzma.so.$version $PKG/usr/lib32/liblzma.so.0 + + rm -r $PKG/usr/{bin,include,share} +} |