mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
development/help2man: Updated for version 1.40.11.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
6594db522d
commit
f606ef93a7
3 changed files with 7 additions and 10 deletions
|
@ -1,4 +1,2 @@
|
|||
help2man is a tool for automatically generating simple manual pages
|
||||
from program output.
|
||||
|
||||
help2man requires locale-gettext available on SlackBuilds.org.
|
||||
|
|
|
@ -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*
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="help2man"
|
||||
VERSION="1.36.4"
|
||||
VERSION="1.40.11"
|
||||
HOMEPAGE="http://www.gnu.org/software/help2man"
|
||||
DOWNLOAD="http://ftp.gnu.org/gnu/help2man/help2man-1.36.4.tar.gz"
|
||||
MD5SUM="d31a0a38c2ec71faa06723f6b8bd3076"
|
||||
DOWNLOAD="http://ftp.gnu.org/gnu/help2man/help2man-1.40.11.tar.gz"
|
||||
MD5SUM="169c7db58f09cfc704c5d953139bb58d"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="locale-gettext"
|
||||
|
|
Loading…
Reference in a new issue