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 /expat-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 'expat-32')
-rw-r--r-- | expat-32/.32bit | 0 | ||||
-rw-r--r-- | expat-32/.footprint | 9 | ||||
-rw-r--r-- | expat-32/.md5sum | 1 | ||||
-rw-r--r-- | expat-32/Pkgfile | 19 |
4 files changed, 29 insertions, 0 deletions
diff --git a/expat-32/.32bit b/expat-32/.32bit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/expat-32/.32bit diff --git a/expat-32/.footprint b/expat-32/.footprint new file mode 100644 index 00000000..a8b885da --- /dev/null +++ b/expat-32/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib32/ +-rw-r--r-- root/root usr/lib32/libexpat.a +-rwxr-xr-x root/root usr/lib32/libexpat.la +lrwxrwxrwx root/root usr/lib32/libexpat.so -> libexpat.so.1.6.0 +lrwxrwxrwx root/root usr/lib32/libexpat.so.1 -> libexpat.so.1.6.0 +-rwxr-xr-x root/root usr/lib32/libexpat.so.1.6.0 +drwxr-xr-x root/root usr/lib32/pkgconfig/ +-rw-r--r-- root/root usr/lib32/pkgconfig/expat.pc diff --git a/expat-32/.md5sum b/expat-32/.md5sum new file mode 100644 index 00000000..7107749a --- /dev/null +++ b/expat-32/.md5sum @@ -0,0 +1 @@ +dd7dab7a5fea97d2a6a43f511449b7cd expat-2.1.0.tar.gz diff --git a/expat-32/Pkgfile b/expat-32/Pkgfile new file mode 100644 index 00000000..a407bb6b --- /dev/null +++ b/expat-32/Pkgfile @@ -0,0 +1,19 @@ +# Description: A fast, non-validating, stream-oriented XML parsing library +# URL: http://expat.sourceforge.net/ +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: expat + +name=expat-32 +version=2.1.0 +release=1 +source=(http://download.sourceforge.net/expat/expat-$version.tar.gz) + +build() { + cd expat-$version + ./configure --prefix=/usr \ + --libdir=/usr/lib32 \ + --mandir=/usr/man + make + make INSTALL_ROOT=$PKG install + rm -rf $PKG/usr/{bin,include,man} +} |