diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-22 11:42:20 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-22 11:42:20 -0400 |
commit | 9bc01179fbaba757277f1343f8c04a3d7ea5e3da (patch) | |
tree | 32ad68a760ef4a3e240c20fe007c5e72627736cf /libraries/Geraldo | |
parent | 21a6d685421979ed03db386f5dd49539ab0457db (diff) |
libraries/Geraldo: Fix docs.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/Geraldo')
-rw-r--r-- | libraries/Geraldo/Geraldo.SlackBuild | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/libraries/Geraldo/Geraldo.SlackBuild b/libraries/Geraldo/Geraldo.SlackBuild index 7c0a3faa6ef4..77587b15f7aa 100644 --- a/libraries/Geraldo/Geraldo.SlackBuild +++ b/libraries/Geraldo/Geraldo.SlackBuild @@ -6,25 +6,26 @@ # Written by Lionel Young <redtricycle@gmail.com> # Based on http://slackbuilds.org/template.SlackBuild +# 20220422 bkw: Modified by SlackBuilds.org, BUILD=2: +# - remove +x permission from fonts in doc dir. +# - i486 => i586. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=Geraldo VERSION=${VERSION:-0.4.12} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; 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 @@ -34,8 +35,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -59,15 +60,16 @@ cd $PRGNAM-$VERSION-stable 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 \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ python setup.py install --root=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +chmod 644 geraldo/tests/*.ttf # 20220422 bkw: fonts aren't executables. mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ CHANGES AUTHORS LICENSE README examples geraldo/tests \ |