diff options
author | David Woodfall <dave@slackbuilds.org> | 2022-02-18 19:16:30 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-19 12:09:31 +0700 |
commit | cf100fe860784cdb7ae7993f67b521d0a2cbd55b (patch) | |
tree | b8fbb91471d44a09212c24128b15839e3d0a0085 /audio/lash | |
parent | 22dc03436141586f88cfe8fa445b246b8b70ac89 (diff) |
audio/lash: Update for new texi2html.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/lash')
-rw-r--r-- | audio/lash/lash.SlackBuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/audio/lash/lash.SlackBuild b/audio/lash/lash.SlackBuild index 2b491ac24f54..1279c3129a55 100644 --- a/audio/lash/lash.SlackBuild +++ b/audio/lash/lash.SlackBuild @@ -29,7 +29,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=lash VERSION=${VERSION:-0.6.0.594} SOURCE=$PRGNAM-0.6.0~rc2 -BUILD=${BUILD:-5} +BUILD=${BUILD:-6} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -82,12 +82,13 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -if [ "$(/usr/share/texmf/bin/texi2html --version 2>/dev/null)" != "1.76" ]; then - patch -p1 --verbose < $CWD/texlive.patch -fi +#if [ "$(/usr/share/texmf/bin/texi2html --version 2>/dev/null)" != "1.76" ]; then +# patch -p1 --verbose < $CWD/texlive.patch +#fi -if $( which texi2html >/dev/null 2>&1 ); then - manual=docs/lash-manual-html-one-page/lash-manual.html +if [ -x /usr/bin/texi2html ]; then + manual=docs/lash-manual-html-one-page/lash-manual.html + sed -i "s,texi2html --number,&-sections,g" docs/Makefile.in fi export LDFLAGS="-ldl -lm -ltirpc" |