#!/bin/sh # Written by Thomas Bourdon # Copyright: See COPYING file at . # Build infos PRGNAM=mozilla-firefox-last VERSION=${VERSION:-106.0.1} 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=i686 ;; arm*) ARCH=arm ;; # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} # Determine some specific variables to build software. if [ "$ARCH" = "i586" ]; then LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then LIBDIRSUFFIX="64" else LIBDIRSUFFIX="" fi # Exit on most errors set -e # Extract the software rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf firefox-$VERSION tar xvf $CWD/firefox-$VERSION.tar.?z* mv firefox firefox-$VERSION chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} + -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} + # Remove searchplugins #rm -f firefox-$VERSION/browser/searchplugins/*.xml # Install software mkdir -p $PKG/usr/lib${LIBDIRSUFFIX} mv firefox-$VERSION $PKG/usr/lib${LIBDIRSUFFIX} mkdir -p $PKG/usr/bin ( cd $PKG/usr/bin ; ln -s /usr/lib${LIBDIRSUFFIX}/firefox-$VERSION/firefox firefox ) # Install application file and icons mkdir -p $PKG/usr/share/applications cat $CWD/mozilla-firefox.desktop > $PKG/usr/share/applications/mozilla-firefox.desktop ( cd $PKG/usr/share ; tar xf $CWD/icons.tar.gz ) # Strip binaries and libraries and archives find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true find $PKG -type f | xargs file | grep "current ar archive" | cut -d : -f 1 | xargs strip -g 2> /dev/null || true # Copy program documentation into the package mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild # Copy the slack-desc into ./install mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc # Make the package cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}