diff options
author | Pierre Cazenave <pwcazenave@gmail.com> | 2010-05-11 20:01:58 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:01:58 +0200 |
commit | a50a71b73c947bea8b2b1d0b32c793f4dc57ed34 (patch) | |
tree | 39640d47519e102afc7007cb52f739ee74a7fc21 /system/fish/fish.SlackBuild | |
parent | c3626a392f5d6116a4f998ec41f8bc8dbe125e9b (diff) | |
download | slackbuilds-a50a71b73c947bea8b2b1d0b32c793f4dc57ed34.tar.gz |
system/fish: Added to 12.0 repository
Diffstat (limited to 'system/fish/fish.SlackBuild')
-rw-r--r-- | system/fish/fish.SlackBuild | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/system/fish/fish.SlackBuild b/system/fish/fish.SlackBuild new file mode 100644 index 0000000000..1f0d816d74 --- /dev/null +++ b/system/fish/fish.SlackBuild @@ -0,0 +1,68 @@ +#!/bin/sh + +# Slackware build script for the fish shell + +# Pierre Cazenave pwcazenave@gmail.com + +PRGNAM=fish +VERSION=1.23.0 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar xvf $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 . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var + +make +make install DESTDIR=$PKG + +# Let's not clobber the config +mv $PKG/etc/fish/config.fish $PKG/etc/fish/config.fish.new + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +( 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 +mv $PKG/usr/share/doc/fish $PKG/usr/doc/$PRGNAM-$VERSION +cp -a INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +rmdir $PKG/usr/share/doc +( cd $PKG/usr/doc ; ln -s $PRGNAN-$VERSION $PRGNAM ) + +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 |