#!/bin/sh # Heavily based on the Slackware 11.0 SlackBuild # http://www.opera.com # Packager Andrea Sciucca ( gohanz at infinito.it ) # http://www.slacky.it CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package-opera NAME=opera VERSION=9.21 ARCH=${ARCH:-i386} BUILD=1as if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xjvf $CWD/opera-9.21-20070510.5-shared-qt.i386-en.tar.bz2 echo -e "\E[0;32m+-----------------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild $NAME-$VERSION |\E[0;0m" echo -e "\E[0;32m+-----------------------------+\E[0;0m" cd opera-9.21-20070510.5-shared-qt.i386-en-641 find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; find . -perm 666 -exec chmod 644 {} \; find . -perm 664 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; chown -R root:root . ./install.sh DESTDIR=$PKG mkdir -p $PKG/etc mkdir -p $PKG/usr/man/man1 mkdir -p $PKG/usr/share/applications cp -a $TMP/opera-9.21-20070510.5-shared-qt.i386-en-641/man/* $PKG/usr/man/man1 cp -a $TMP/opera-9.21-20070510.5-shared-qt.i386-en-641/config/* $PKG/etc rm -rf $PKG/usr/share/opera/config rm -rf $PKG/usr/share/doc rm -rf $PKG/usr/share/man mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a LICENSE $PKG/usr/doc/$NAME-$VERSION ( 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 ) cat << EOF > $PKG/usr/share/applications/opera.desktop [Desktop Entry] Encoding=UTF-8 Name=Opera GenericName=Browser Web Comment=Internet Application Suite TryExec=opera Exec=opera Icon=opera.png Terminal=0 Categories=Qt;Application;Network; EOF 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 gzip -9 $PKG/usr/man/*/* cd $PKG 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