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 /gdbm-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 'gdbm-32')
-rw-r--r-- | gdbm-32/.32bit | 0 | ||||
-rw-r--r-- | gdbm-32/.footprint | 12 | ||||
-rw-r--r-- | gdbm-32/.md5sum | 1 | ||||
-rw-r--r-- | gdbm-32/Pkgfile | 22 |
4 files changed, 35 insertions, 0 deletions
diff --git a/gdbm-32/.32bit b/gdbm-32/.32bit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/gdbm-32/.32bit diff --git a/gdbm-32/.footprint b/gdbm-32/.footprint new file mode 100644 index 00000000..c8926f15 --- /dev/null +++ b/gdbm-32/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib32/ +-rw-r--r-- root/root usr/lib32/libgdbm.a +-rwxr-xr-x root/root usr/lib32/libgdbm.la +lrwxrwxrwx root/root usr/lib32/libgdbm.so -> libgdbm.so.4.0.0 +lrwxrwxrwx root/root usr/lib32/libgdbm.so.4 -> libgdbm.so.4.0.0 +-rwxr-xr-x root/root usr/lib32/libgdbm.so.4.0.0 +-rw-r--r-- root/root usr/lib32/libgdbm_compat.a +-rwxr-xr-x root/root usr/lib32/libgdbm_compat.la +lrwxrwxrwx root/root usr/lib32/libgdbm_compat.so -> libgdbm_compat.so.4.0.0 +lrwxrwxrwx root/root usr/lib32/libgdbm_compat.so.4 -> libgdbm_compat.so.4.0.0 +-rwxr-xr-x root/root usr/lib32/libgdbm_compat.so.4.0.0 diff --git a/gdbm-32/.md5sum b/gdbm-32/.md5sum new file mode 100644 index 00000000..26dd0f9c --- /dev/null +++ b/gdbm-32/.md5sum @@ -0,0 +1 @@ +88770493c2559dc80b561293e39d3570 gdbm-1.10.tar.gz diff --git a/gdbm-32/Pkgfile b/gdbm-32/Pkgfile new file mode 100644 index 00000000..1d245da8 --- /dev/null +++ b/gdbm-32/Pkgfile @@ -0,0 +1,22 @@ +# Description: GNU database library for C +# URL: http://www.gnu.org/software/gdbm/gdbm.html +# Maintainer: CRUX System Team, core-ports at crux dot nu + +name=gdbm-32 +version=1.10 +release=1 +source=(http://ftp.gnu.org/gnu/gdbm/gdbm-$version.tar.gz) + +build() { + export CC="${CC:-gcc} ${CFLAGS}" + + cd gdbm-$version + + ./configure --prefix=/usr \ + --libdir=/usr/lib32 \ + --enable-libgdbm-compat + + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/{bin,include,man,share} +} |