#!/bin/sh # Heavily based on the Slackware 12.0 SlackBuild # Requires: Seamonkey # http://kazehakase.sourceforge.jp/ # http://www.slacky.it NAME=kazehakase VERSION=0.4.8 CHOST=i486 ARCH=${ARCH:-i486} BUILD=1bj CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-$NAME rm -rf $PKG mkdir -p $PKG if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi cd $TMP rm -rf $NAME-$VERSION tar xzvf $CWD/$NAME-$VERSION.tar.gz || exit 1 cd $NAME-$VERSION sed -i "s|Icon=kazehakase-icon.png|Icon=/usr/share/pixmaps/kazehakase-icon.png|g" data/kazehakase.desktop chown -R root:root . MOZILLA_COMPONENT_LIBS="-L /usr/lib/seamonkey" CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --bindir=/usr/lib/$NAME \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ --with-gecko-engine=seamonkey \ --program-prefix= \ --program-suffix= \ --build=$CHOST-slackware-linux make || exit 1 make install DESTDIR=$PKG || exit 1 mkdir -p $PKG/usr/bin cat > $PKG/usr/bin/$NAME << EOF #!/bin/sh # Include /usr/lib/mozilla/plugins in the plugin path if [ "$MOZ_PLUGIN_PATH" ] ; then MOZ_PLUGIN_PATH=$MOZ_PLUGIN_PATH:${moz_libdir}/plugins:/usr/lib/mozilla/plugins else MOZ_PLUGIN_PATH=${moz_libdir}/plugins:/usr/lib/mozilla/plugins fi export MOZ_PLUGIN_PATH exec /usr/lib/kazehakase/kazehakase "\$@" EOF chmod 755 $PKG/usr/bin/* mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a \ ABOUT-NLS AUTHORS COPYING COPYING.README INSTALL README TODO \ $PKG/usr/doc/$NAME-$VERSION find $PKG/usr/man -type f -exec gzip -9 {} \; 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 mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild requiredbuilder -y -v -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi