Browse Source

system/dtach: Updated for version 0.9, strip binary.

Signed-off-by: B. Watson <yalhcru@gmail.com>
pull/186/head
B. Watson 4 years ago
parent
commit
7cbf8b792e
  1. 2
      system/dtach/README
  2. 24
      system/dtach/dtach.SlackBuild
  3. 6
      system/dtach/dtach.info

2
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

24
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

6
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=""

Loading…
Cancel
Save