#!/bin/sh # Heavily based on the Slackware 12.2 SlackBuild # http://www.kompozer.net/ # Packager AsPh4lTo aka albatrosla set -e CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-kompozer NAME=kompozer VERSION=0.7.10 ARCH=${ARCH:-i486} BUILD=1la if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xzvf $CWD/$NAME-$VERSION\dfsg-src.tar.gz cd $NAME-$VERSION/mozilla cat $CWD/kompozer-0.50-freetype-compile.patch | patch -p0 --verbose cat $CWD/mozilla-rpath-3.patch | patch -p0 --verbose cat $CWD/mozilla-1.7.13-as-needed.patch | patch -p0 --verbose cp $CWD/mozconfig .mozconfig CFLAGS="$SLKCFLAGS" ./configure make -f client.mk build_all make install DESTDIR=$PKG mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a LEGAL LICENSE README.txt $PKG/usr/doc/$NAME-$VERSION mkdir -p $PKG/usr/share/applications cp -a $CWD/kompozer.desktop $PKG/usr/share/applications chmod 644 $PKG/usr/share/applications/* mkdir -p $PKG/usr/share/pixmaps cp -a $CWD/kompozer-icon.png $PKG/usr/share/pixmaps chmod 644 $PKG/usr/share/pixmaps/* 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 chown -R root:root . requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.tgz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi