summaryrefslogtreecommitdiffstats
path: root/gdbm/Pkgfile.old
diff options
context:
space:
mode:
Diffstat (limited to 'gdbm/Pkgfile.old')
-rw-r--r--gdbm/Pkgfile.old25
1 files changed, 25 insertions, 0 deletions
diff --git a/gdbm/Pkgfile.old b/gdbm/Pkgfile.old
new file mode 100644
index 0000000..e510d80
--- /dev/null
+++ b/gdbm/Pkgfile.old
@@ -0,0 +1,25 @@
+# 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
+version=1.8.3
+release=2
+source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz
+ $name-$version-compat-linking.patch)
+
+build() {
+ cd $name-$version
+
+ patch -p1 -i $SRC/$name-$version-compat-linking.patch
+
+ ./configure --prefix=/usr \
+ --includedir=/usr/include/gdbm
+
+ make
+ make -j1 INSTALL_ROOT=$PKG install install-compat
+ ln -sf gdbm/gdbm.h $PKG/usr/include/gdbm.h
+
+ rm -r $PKG/usr/info
+ chown -R root.root $PKG
+}