diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-10 12:56:51 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-04-10 12:56:51 -0400 |
commit | 7cbf8b792ebdcea327ec3b31e2e1f09ceba5f206 (patch) | |
tree | cf2dfc49b2417fd523f9fbd8ce9367ef713315d5 /system/dtach/dtach.SlackBuild | |
parent | fd2a455e664c29e2d58ac630130dc8dec66d69a6 (diff) |
system/dtach: Updated for version 0.9, strip binary.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'system/dtach/dtach.SlackBuild')
-rw-r--r-- | system/dtach/dtach.SlackBuild | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/system/dtach/dtach.SlackBuild b/system/dtach/dtach.SlackBuild index 550ea431ae1d7..1eb8d7854ca17 100644 --- a/system/dtach/dtach.SlackBuild +++ b/system/dtach/dtach.SlackBuild @@ -4,25 +4,27 @@ # Written by slakmagik <slakmagik@gmail.com> # Released under the WTFPL +# 20220410 bkw: Modified by SlackBuilds.org: +# - updated for v0.9. +# - strip binary. +# - i486 => i586. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=dtach -VERSION=${VERSION:-0.8} -BUILD=${BUILD:-2} +VERSION=${VERSION:-0.9} +BUILD=${BUILD:-1} 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 @@ -32,8 +34,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" @@ -57,16 +59,16 @@ 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 \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 \ - -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 400 \) -exec chmod 644 {} \+ CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" ./configure --prefix=/usr make # no 'install' target, so... mkdir -p $PKG/usr/bin -cp -a dtach $PKG/usr/bin +install -s -m0755 dtach $PKG/usr/bin mkdir -p $PKG/usr/man/man1 gzip -9c dtach.1 > $PKG/usr/man/man1/dtach.1.gz |