diff options
Diffstat (limited to 'system/sash/sash.SlackBuild')
-rw-r--r-- | system/sash/sash.SlackBuild | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/system/sash/sash.SlackBuild b/system/sash/sash.SlackBuild deleted file mode 100644 index 942447d98dbb6..0000000000000 --- a/system/sash/sash.SlackBuild +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/sh - -# Slackware build script for the stand alone shell (sash) - -# Written by Menno Duursma <druiloor@zonnet.nl> -# Modified by Robby Workman of the SlackBuilds.org project - -# This program is free software. It comes without any warranty. -# Granted WTFPL, Version 2, as published by Sam Hocevar. See -# http://sam.zoy.org/wtfpl/COPYING for more details. - -PRGNAM=sash -VERSION=${VERSION:-3.7} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -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 # Exit on most errors - -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 . -chmod -R u+w,go+r-w,a-s . - -# The 'sash-plus-patches' patch adds support for _very_ useful features -# like env var expansion and the 'chroot' command: -# http://www.baiti.net/sash/ -patch -p1 --verbose < $CWD/patches/sash-plus-patches-3.7 - -# Apply the appropriate CFLAGS to the Makefile -sed -i "s/^CFLAGS = -O3/CFLAGS = $SLKCFLAGS/" Makefile - -# Let's make this thing support DESTDIR -patch -p1 --verbose < $CWD/patches/sash-3.7-DESTDIR.patch - -# Fix an include line in cmd_chattr.c -patch -p1 --verbose < $CWD/patches/sash-3.7-cmd_chattr.c.patch - -# Create target dirs -mkdir -p $PKG/bin $PKG/usr/man/man1 - -make -make install DESTDIR=$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 - -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a CHANGES README $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 -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |