diff options
author | Lenard Spencer <lenardrspencer at gmail dot com> | 2024-08-19 14:17:11 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-08-19 14:45:28 +0700 |
commit | 32ccc788924a2524885c0f9c61f02fc38d2dc9c2 (patch) | |
tree | 696e4690b60077860f5333cfe76ded197a1db098 /accessibility | |
parent | e5bbb686ce8c66533242b0852014128b4ed8c3fd (diff) |
accessibility/espeakup: Updated for version 0.80.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/espeakup/espeakup.SlackBuild | 12 | ||||
-rw-r--r-- | accessibility/espeakup/espeakup.info | 10 |
2 files changed, 13 insertions, 9 deletions
diff --git a/accessibility/espeakup/espeakup.SlackBuild b/accessibility/espeakup/espeakup.SlackBuild index 98074a94c97ca..5e122915692b3 100644 --- a/accessibility/espeakup/espeakup.SlackBuild +++ b/accessibility/espeakup/espeakup.SlackBuild @@ -3,11 +3,11 @@ # Slackware build script for espeakup # Written by albator albat0r78@wanadoo.fr - +# Updated by Lenard Spencer <lenardrspencer@gmail.com> cd $(dirname $0) ; CWD=$(pwd) PRGNAM=espeakup -VERSION=${VERSION:-0.71} +VERSION=${VERSION:-0.80} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -65,8 +65,8 @@ find -L . \ # 20211209 bkw: Slackware now ships espeak-ng, use it. sed -i 's,-lespeak,&-ng,' Makefile -make MANDIR=/usr/man/man8 CFLAGS="$SLKCFLAGS" -make install MANDIR=/usr/man/man8 DESTDIR=$PKG +make BINDIR=/usr/bin MANDIR=/usr/man/ CFLAGS="$SLKCFLAGS" +make install BINDIR=/usr/bin MANDIR=/usr/man/ DESTDIR=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true @@ -74,6 +74,10 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING ChangeLog README TODO $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc diff --git a/accessibility/espeakup/espeakup.info b/accessibility/espeakup/espeakup.info index a9943542eb596..8004e409431b0 100644 --- a/accessibility/espeakup/espeakup.info +++ b/accessibility/espeakup/espeakup.info @@ -1,10 +1,10 @@ PRGNAM="espeakup" -VERSION="0.71" +VERSION="0.80" HOMEPAGE="https://github.com/williamh/espeakup" -DOWNLOAD="https://github.com/williamh/espeakup/archive/v0.71/espeakup-0.71.tar.gz" -MD5SUM="9187bad3141ec0764db55dba50325b22" +DOWNLOAD="https://github.com/williamh/espeakup/archive/v0.80/espeakup-0.80.tar.gz" +MD5SUM="c69ae545bc074810254d4a58303065e5" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" -MAINTAINER="Didier Spaier" -EMAIL="didier at slint dot fr" +MAINTAINER="Lenard Spencer" +EMAIL="lenardrspencer at gmail dot com" |