diff options
Diffstat (limited to 'system/mybashburn/mybashburn.SlackBuild')
-rw-r--r-- | system/mybashburn/mybashburn.SlackBuild | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/system/mybashburn/mybashburn.SlackBuild b/system/mybashburn/mybashburn.SlackBuild deleted file mode 100644 index 8dafa94920fdf..0000000000000 --- a/system/mybashburn/mybashburn.SlackBuild +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh -# Slackware Build Script for mybashburn -# (C) 2007 Michael Wagner <lapinours@web.de> -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -set -e - -PRGNAM=mybashburn -VERSION=1.0.2 -ARCH=${ARCH:-noarch} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $PRGNAM-$VERSION -tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1 -cd $PRGNAM-$VERSION || exit 1 -chown -R root:root . || true -chmod -R u+w,go+r-w,a-s . - -make install DESTDIR=$PKG || exit 1 - -# Move mandir, docdir and sysconfir to their proper locations -( for i in man doc etc; do - if [ $i != etc ]; then - mv $PKG/usr/share/$i $PKG/usr - else - cat $PKG/usr/share/$PRGNAM/etc/${PRGNAM}rc > $PKG/etc/${PRGNAM}rc.new - rm -rf $PKG/usr/share/$PRGNAM/etc - fi -done ) || exit 1 - -# Re-arrange the symlinks created during make install -for i in $(find $PKG -type l); do - if [ $(basename $i) != mybashburn ]; then - ln -sf ../../doc/$PRGNAM-$VERSION/$(basename $i) $i - else - ln -sf ../share/$PRGNAM/MyBashBurn.sh $i - fi -done - -( cd $PKG/usr/man - find . -name "*.?" -type f 2> /dev/null | xargs gzip -9 2> /dev/null - for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done -) - -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/* - -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.tgz |