summaryrefslogtreecommitdiffstats
path: root/gdbm/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'gdbm/Pkgfile')
-rw-r--r--gdbm/Pkgfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/gdbm/Pkgfile b/gdbm/Pkgfile
new file mode 100644
index 0000000..047a55a
--- /dev/null
+++ b/gdbm/Pkgfile
@@ -0,0 +1,21 @@
+description="GNU database library for C"
+packager=""
+maintainer="CRUX System Team, core-ports at crux dot nu"
+url="http://www.gnu.org/software/gdbm/gdbm.html"
+depends=()
+
+name=gdbm
+version=1.8.3
+release=2
+source=(http://ftp.gnu.org/gnu/gdbm/gdbm-1.8.3.tar.gz gdbm-1.8.3-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
+}