diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-12 03:41:00 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-13 09:17:48 +0700 |
commit | 4d4b5139f80c05fb46728091bbb8b4dcad7d1f19 (patch) | |
tree | e28fd82d9996a97a74a46cbd44ab8e54e162f485 /system | |
parent | b6777ee1eb7faa492145d8928b41e93799a64c26 (diff) |
system/untex: Fix download URL.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/untex/slack-desc | 2 | ||||
-rw-r--r-- | system/untex/untex.SlackBuild | 12 | ||||
-rw-r--r-- | system/untex/untex.info | 6 |
3 files changed, 8 insertions, 12 deletions
diff --git a/system/untex/slack-desc b/system/untex/slack-desc index abe8ff5b5f4e..b65cfa9a3e79 100644 --- a/system/untex/slack-desc +++ b/system/untex/slack-desc @@ -10,10 +10,10 @@ untex: untex (strip LaTeX commands from source file) untex: untex: A tool for removing LaTeX commands from input. untex: +untex: Homepage: https://www.ctan.org/pkg/untex untex: untex: untex: untex: untex: untex: -untex: Homepage: https://www.ctan.org/pkg/untex diff --git a/system/untex/untex.SlackBuild b/system/untex/untex.SlackBuild index 41f9297c7318..18a34b78e111 100644 --- a/system/untex/untex.SlackBuild +++ b/system/untex/untex.SlackBuild @@ -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. diff --git a/system/untex/untex.info b/system/untex/untex.info index 14d9bcac314e..f398b4a0c18f 100644 --- a/system/untex/untex.info +++ b/system/untex/untex.info @@ -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" |