diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2020-09-12 19:31:10 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-04-17 23:18:21 -0500 |
commit | 16c57ab1f9807c30754fedfa7d469ba8920c61b2 (patch) | |
tree | 430971717896e306a89e0241a7244d918197c611 | |
parent | 71ede37a54995850ec611a4221eb237e6be9bb37 (diff) |
system/dash: Removed (added to Slackware).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
-rw-r--r-- | system/dash/README | 4 | ||||
-rw-r--r-- | system/dash/dash.SlackBuild | 90 | ||||
-rw-r--r-- | system/dash/dash.info | 10 | ||||
-rw-r--r-- | system/dash/slack-desc | 19 |
4 files changed, 0 insertions, 123 deletions
diff --git a/system/dash/README b/system/dash/README deleted file mode 100644 index 4f1ca583a5a5..000000000000 --- a/system/dash/README +++ /dev/null @@ -1,4 +0,0 @@ -DASH is a POSIX-compliant implementation of /bin/sh that aims to be as -small as possible. It does this without sacrificing speed where -possible. In fact, it is significantly faster than bash (the GNU -Bourne-Again SHell) for most tasks. diff --git a/system/dash/dash.SlackBuild b/system/dash/dash.SlackBuild deleted file mode 100644 index e0d4ada3e398..000000000000 --- a/system/dash/dash.SlackBuild +++ /dev/null @@ -1,90 +0,0 @@ -#!/bin/sh - -# Slackware build script for dash - -# Written by Vincent Batts, http://hashbangbash.com/ -# Copyright 2017-2020 Donald Cooley South Haven, Indiana USA - -PRGNAM=dash -VERSION=${VERSION:-0.5.11.2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -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 \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/ \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux \ - --with-libedit - -make -make install DESTDIR=$PKG - -mkdir -p $PKG/usr/bin -( cd $PKG/usr/bin ; ln -s /bin/dash dash ) - -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 - -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 \ - $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 - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/dash/dash.info b/system/dash/dash.info deleted file mode 100644 index 8404d7fbad31..000000000000 --- a/system/dash/dash.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="dash" -VERSION="0.5.11.2" -HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/" -DOWNLOAD="http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.11.2.tar.gz" -MD5SUM="b9b71c72e40fdc4db9b4ffb81fc3bebc" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="libedit" -MAINTAINER="Donald Cooley" -EMAIL="chytraeu@sdf.org" diff --git a/system/dash/slack-desc b/system/dash/slack-desc deleted file mode 100644 index 83489625d677..000000000000 --- a/system/dash/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -dash: dash (POSIX compliant shell) -dash: -dash: DASH is a POSIX-compliant implementation of /bin/sh that aims -dash: to be as small as possible. It does this without sacrificing -dash: speed where possible. In fact, it is significantly faster than -dash: bash (the GNU Bourne-Again SHell) for most tasks. -dash: -dash: -dash: -dash: -dash: |