mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
76 lines
2.2 KiB
Bash
76 lines
2.2 KiB
Bash
#!/bin/sh
|
|
# Slackware Build Script for mybashburn
|
|
# (C) 2007 Michael Wagner <lapinours@web.de>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by the
|
|
# Free Software Foundation; either version 2 of the License, or (at your
|
|
# option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
# Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
|
|
set -e
|
|
|
|
PRGNAM=mybashburn
|
|
VERSION=1.0.1
|
|
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 .
|
|
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
|