texinfo: the INSTALL script is not needed anymore.
Bump revision. --HG-- extra : convert_revision : ee2755712aeb0d005970d91107b76f120e570635
This commit is contained in:
parent
17404bdb42
commit
b51659f128
|
@ -1,34 +0,0 @@
|
|||
#
|
||||
# This script registers all currently installed info files.
|
||||
#
|
||||
texinfo_files="info.info.gz info-stnd.info.gz texinfo.gz"
|
||||
texinfo_files="${texinfo_files} texinfo-1.gz texinfo-2.gz texinfo-3.gz"
|
||||
|
||||
case "${ACTION}" in
|
||||
pre)
|
||||
;;
|
||||
post)
|
||||
for file in $(find ./usr/share/info -type f ! -name dir); do
|
||||
for i in ${texinfo_files}; do
|
||||
if [ "$(basename ${file#.})" = "${i}" ]; then
|
||||
found=1
|
||||
break
|
||||
fi
|
||||
done
|
||||
if [ -n "$found" ]; then
|
||||
unset found
|
||||
continue
|
||||
fi
|
||||
echo -n "Registering info file: ${file#.}... "
|
||||
if [ "${file#.}" = "/usr/share/info/dir" ]; then
|
||||
continue
|
||||
fi
|
||||
install-info $file ./usr/share/info/dir 2> /dev/null
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "done."
|
||||
else
|
||||
echo "failed!"
|
||||
fi
|
||||
done
|
||||
;;
|
||||
esac
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'texinfo'
|
||||
pkgname=texinfo
|
||||
version=4.13a
|
||||
revision=1
|
||||
revision=2
|
||||
wrksrc="$pkgname-4.13"
|
||||
distfiles="http://ftp.gnu.org/gnu/$pkgname/$pkgname-$version.tar.gz"
|
||||
build_style=gnu_configure
|
||||
|
|
Loading…
Reference in New Issue