#!/bin/sh # Heavily based on the Slackware 12.1 SlackBuild # http://www.nvu.com/ # Packager Vincenzi Loris - slacky@slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-nvu NAME=nvu VERSION=1.0 ARCH=${ARCH:-i486} BUILD=1sl 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 xjvf $CWD/nvu-1.0-sources.tar.bz2 cd mozilla cat $CWD/nvu-0.50-dir.patch | patch -p0 --verbose cat $CWD/nvu-0.50-freetype-compile.patch | patch -p0 --verbose cat $CWD/mozilla-rpath-3.patch | patch -p0 --verbose cat $CWD/nvu-1.0-gcc4-1.patch | patch -p1 --verbose cat $CWD/010_glibc-2.4.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/nvu.desktop $PKG/usr/share/applications chmod 644 $PKG/usr/share/applications/* mkdir -p $PKG/usr/share/pixmaps cp -a $CWD/nvu-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