diff options
Diffstat (limited to 'source/e')
-rwxr-xr-x | source/e/emacspeak/emacspeak.SlackBuild | 7 | ||||
-rw-r--r-- | source/e/emacspeak/emacspeak.url | 1 | ||||
-rwxr-xr-x | source/e/emacspeak/prune-unneeded-files.sh | 9 |
3 files changed, 4 insertions, 13 deletions
diff --git a/source/e/emacspeak/emacspeak.SlackBuild b/source/e/emacspeak/emacspeak.SlackBuild index 7cdb21ce2..7c45f0ffb 100755 --- a/source/e/emacspeak/emacspeak.SlackBuild +++ b/source/e/emacspeak/emacspeak.SlackBuild @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright 2006, 2008, 2010, 2011, 2020 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2006, 2008, 2010, 2011, 2020, 2024 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=emacspeak VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-3} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -89,8 +89,7 @@ find . \ find . -xtype l -exec rm -f {} \; # Compile the main program against Emacs: -make config -make emacspeak +make config && make if [ ! -r info/emacspeak.info ]; then makeinfo -o info/ info/emacspeak.texi fi diff --git a/source/e/emacspeak/emacspeak.url b/source/e/emacspeak/emacspeak.url index c0195a569..018d49104 100644 --- a/source/e/emacspeak/emacspeak.url +++ b/source/e/emacspeak/emacspeak.url @@ -1 +1,2 @@ https://github.com/tvraman/emacspeak +https://github.com/tvraman/emacspeak/releases/download/59/emacspeak-59.0.tar.bz2 diff --git a/source/e/emacspeak/prune-unneeded-files.sh b/source/e/emacspeak/prune-unneeded-files.sh index b78b68720..f9164fbf9 100755 --- a/source/e/emacspeak/prune-unneeded-files.sh +++ b/source/e/emacspeak/prune-unneeded-files.sh @@ -8,12 +8,6 @@ VERSION=${VERSION:-$(echo $PKGNAM-*.tar.bz2 | rev | cut -f 3- -d . | cut -f 1 -d rm -rf ${PKGNAM}-${VERSION} tar xf ${PKGNAM}-${VERSION}.tar.bz2 || exit 1 -# I have no idea what these are useful for. They aren't referenced anywhere -# else. If .json weren't such a bloated format I might keep them just in case, -# but let's strip them out for now. If it would be better to keep them (perhaps -# compressed as .gz or .xz), let me know. -( cd ${PKGNAM}-${VERSION}/etc && rm -f CompSciFact.json TVRaman.json UnixToolTip.json ) - # Get rid of support files used to build .html: ( cd ${PKGNAM}-${VERSION}/etc for file in *.html ; do @@ -34,9 +28,6 @@ tar xf ${PKGNAM}-${VERSION}.tar.bz2 || exit 1 rmdir news-tmp ) -# Drop the Makefile in etc/: -rm -f ${PKGNAM}-${VERSION}/etc/Makefile - # More cruft: rm -rf ${PKGNAM}-${VERSION}/.ccls-cache |