diff options
Diffstat (limited to 'extra/dbh/Pkgfile')
-rwxr-xr-x | extra/dbh/Pkgfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/extra/dbh/Pkgfile b/extra/dbh/Pkgfile new file mode 100755 index 000000000..b7982785f --- /dev/null +++ b/extra/dbh/Pkgfile @@ -0,0 +1,20 @@ +# Description: Librairie pour la création de Disk Based Hashtables sur les systèmes POSIX +# URL: http://dbh.sourceforge.net +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=dbh +version=4.6.0 +release=1 +source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz\ + http://nutyx.meticul.eu/files/patchs/$name/dbh-4.6.0-man-1.patch) +build() { +cd $name-$version + ./configure --prefix=/usr \ + --enable-static=no --mandir=/usr/share/man + patch -Np1 -i ../dbh-4.6.0-man-1.patch + make + make DESTDIR=$PKG MANDIR=$PKG/usr/share/man install + rm -r $PKG/usr/share/gtk-doc +} + |