diff options
Diffstat (limited to 'base/dbh/Pkgfile')
-rwxr-xr-x | base/dbh/Pkgfile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/base/dbh/Pkgfile b/base/dbh/Pkgfile index fd3004980..b7982785f 100755 --- a/base/dbh/Pkgfile +++ b/base/dbh/Pkgfile @@ -2,18 +2,19 @@ # URL: http://dbh.sourceforge.net # Maintainer: NuTyX core team # Packager: thierryn1 at hispeed dot ch -# Depends on: name=dbh -version=4.5.0 -release=2 -source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz) - +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 + --enable-static=no --mandir=/usr/share/man + patch -Np1 -i ../dbh-4.6.0-man-1.patch make - make DESTDIR=$PKG install + make DESTDIR=$PKG MANDIR=$PKG/usr/share/man install + rm -r $PKG/usr/share/gtk-doc } |