system/untex: Fix download URL.

Signed-off-by: B. Watson <yalhcru@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
B. Watson 2022-02-12 03:41:00 -05:00 committed by Willy Sudiarto Raharjo
parent b6777ee1eb
commit 4d4b5139f8
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with 13 additions and 17 deletions

View File

@ -10,10 +10,10 @@ untex: untex (strip LaTeX commands from source file)
untex:
untex: A tool for removing LaTeX commands from input.
untex:
untex:
untex:
untex:
untex:
untex:
untex:
untex: Homepage: https://www.ctan.org/pkg/untex
untex:
untex:
untex:
untex:
untex:
untex:

View File

@ -25,6 +25,9 @@
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# 20220212 bkw:
# - actually update the maintainer/email in the .info file, d'oh!
# 20170626 bkw:
# - take over maintenance
# - fix missing includes and other compiler warnings
@ -46,9 +49,6 @@ if [ -z "$ARCH" ]; then
esac
fi
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0
@ -82,11 +82,7 @@ mkdir $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -C $PRGNAM-$VERSION
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
chmod 644 *
# 20170626 bkw: fix most of the compiler warnings we get with -Wall. This
# should help with -current's gcc7, which is quite picky.

View File

@ -1,10 +1,10 @@
PRGNAM="untex"
VERSION="1.3"
HOMEPAGE="https://www.ctan.org/pkg/untex"
DOWNLOAD="ftp://ftp.thp.uni-duisburg.de/pub/source/untex-1.3.tar.gz"
DOWNLOAD="https://ftp.netbsd.org/pub/pkgsrc/distfiles/untex-1.3.tar.gz"
MD5SUM="909da862cdccea0f6987467be72f103a"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Niki Kovacs"
EMAIL="info@microlinux.fr"
MAINTAINER="B. Watson"
EMAIL="yalhcru@gmail.com"