diff options
Diffstat (limited to 'network/icecat/icecat.SlackBuild')
-rw-r--r-- | network/icecat/icecat.SlackBuild | 39 |
1 files changed, 26 insertions, 13 deletions
diff --git a/network/icecat/icecat.SlackBuild b/network/icecat/icecat.SlackBuild index 6532b4ceb835..b7b8272b6669 100644 --- a/network/icecat/icecat.SlackBuild +++ b/network/icecat/icecat.SlackBuild @@ -2,18 +2,27 @@ # Slackware build script for icecat # Written by David Negroni <dnegroni.italy@gmail.com> +# Modified by melikamp <melikamp@melikamp.net> + +# This program is free software: it is placed into the Public Domain +# by the author. A verbose dedication is available at +# http://creativecommons.org/publicdomain/zero/1.0/legalcode + +# This program is distributed in the hope that it will be useful, but +# without any warranty; compiling, interpreting, executing or merely +# reading the text of the program may result in lapses of consciousness +# and/or very being, up to and including the end of all existence and +# the Universe as we know it. PRGNAM="icecat" -VERSION="3.6" +VERSION="5.0" BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -24,18 +33,18 @@ PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi set -e @@ -61,13 +70,17 @@ CXXFLAGS="$SLKCFLAGS" \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --build=$ARCH-slackware-linux || exit 1 -make || exit 1 +make || exit 1 make install DESTDIR=$PKG +# Stripping is done in .mozconfig, but there is something we can erase: rm -rf $PKG/usr/lib${LIBDIRSUFFIX}/icecat-devel-$VERSION rm -rf $PKG/usr/include mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + ChangeLog LEGAL LICENSE README.ICECAT README.txt config.cache \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |