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 | |
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')
-rw-r--r-- | system/dtach/README | 2 | ||||
-rw-r--r-- | system/dtach/dtach.SlackBuild | 24 | ||||
-rw-r--r-- | system/dtach/dtach.info | 6 |
3 files changed, 18 insertions, 14 deletions
diff --git a/system/dtach/README b/system/dtach/README index 4a0b946266d4d..b82155a954029 100644 --- a/system/dtach/README +++ b/system/dtach/README @@ -1,3 +1,5 @@ +dtach (detaches/reattaches programs from/to their terminals) + dtach is a tiny program that emulates the detach feature of screen, allowing you to run a program in an environment that is protected from the controlling terminal and attach to it later. dtach does not keep 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 diff --git a/system/dtach/dtach.info b/system/dtach/dtach.info index 8f476cdcd1a8b..4cbdec25c3401 100644 --- a/system/dtach/dtach.info +++ b/system/dtach/dtach.info @@ -1,8 +1,8 @@ PRGNAM="dtach" -VERSION="0.8" +VERSION="0.9" HOMEPAGE="http://dtach.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/dtach/dtach-0.8.tar.gz" -MD5SUM="ec5999f3b6bb67da19754fcb2e5221f3" +DOWNLOAD="https://github.com/crigler/dtach/archive/v0.9/dtach-0.9.tar.gz" +MD5SUM="41509258606a47c0a88fed180929bdeb" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |