diff options
author | ponce <matteo.bernardini@gmail.com> | 2012-08-07 18:43:49 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-08-21 08:55:31 -0500 |
commit | f606ef93a77c4d075c8ea59bb05fe0d07a9418cc (patch) | |
tree | 6ad399a1cc51efc3cbcf1fbe1dc59e6b174f6b2b /development/help2man/help2man.SlackBuild | |
parent | 6594db522d679a485fec58cd165f62b8c55a3c00 (diff) |
development/help2man: Updated for version 1.40.11.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'development/help2man/help2man.SlackBuild')
-rw-r--r-- | development/help2man/help2man.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/development/help2man/help2man.SlackBuild b/development/help2man/help2man.SlackBuild index 22bdd5fc08ba1..995097e91e3e3 100644 --- a/development/help2man/help2man.SlackBuild +++ b/development/help2man/help2man.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=help2man -VERSION=${VERSION:-1.36.4} +VERSION=${VERSION:-1.40.11} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} @@ -78,6 +78,7 @@ CXXFLAGS="$SLKCFLAGS" \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ + --infodir=/usr/info \ --mandir=/usr/man make @@ -86,10 +87,8 @@ make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done rm -f $PKG/usr/info/dir gzip -9 $PKG/usr/info/*.info* |