diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2010-03-27 11:43:11 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2010-03-27 23:06:51 +1100 |
commit | 07d6930f91fe733b517994c1fa0705f20e04e3f8 (patch) | |
tree | 12d114ae6766b462030b5f3fd3c519f4cd03a58b /help2man | |
parent | 24b6c0ca7503a14c5ae65f82480ec491d56c991a (diff) | |
download | contrib-07d6930f91fe733b517994c1fa0705f20e04e3f8.tar.gz contrib-07d6930f91fe733b517994c1fa0705f20e04e3f8.tar.xz |
help2man: 1.36.4 -> 1.37.1
Diffstat (limited to 'help2man')
-rw-r--r-- | help2man/.md5sum | 2 | ||||
-rw-r--r-- | help2man/Pkgfile | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/help2man/.md5sum b/help2man/.md5sum index 08a7f3d2c..3d3655141 100644 --- a/help2man/.md5sum +++ b/help2man/.md5sum @@ -1 +1 @@ -d31a0a38c2ec71faa06723f6b8bd3076 help2man-1.36.4.tar.gz +371b5cc74fe9c2ea3ee1ca23c19b19a8 help2man-1.37.1.tar.gz diff --git a/help2man/Pkgfile b/help2man/Pkgfile index 742c0f147..1bd0c7b56 100644 --- a/help2man/Pkgfile +++ b/help2man/Pkgfile @@ -5,20 +5,22 @@ # Depends on: name=help2man -version=1.36.4 +version=1.37.1 release=1 -source=(http://ftp.gnu.org/gnu/help2man/help2man-$version.tar.gz) +source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz) build() { - cd help2man-$version + cd $name-$version ./configure \ --prefix=/usr \ + --mandir=/usr/man \ --disable-nls make - make prefix=$PKG/usr install + install -d $PKG/usr/lib + make DESTDIR=$PKG install - rm -rf $PKG/usr/info + rm -rf $PKG/usr/share/info + rmdir $PKG/usr/share } - |