diff options
Diffstat (limited to 'audio/lash/lash.SlackBuild')
-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" |