#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://www.laas02.org # Packager Andrea Sciucca ( gohanz at infinito.it) # http://www.slacky.eu # # Required: gtk-sharp # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} NAME=youtranslate PKG=$TMP/package/$NAME VERSION=1.2.2 ARCH=${ARCH:-i686} BUILD=3as SOURCE=http://www.laas02.org/wp-content/res/yt/$NAME'_'$VERSION'_'bin.tar.gz if [ ! -e $NAME'_'$VERSION'_'bin.tar.gz ]; then wget -c $SOURCE fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xvzf $CWD/$NAME'_'$VERSION'_'bin.tar.gz echo -e "\E[0;32m+--------------------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild YouTranslate! |\E[0;0m" echo -e "\E[0;32m+--------------------------------+\E[0;0m" cd $NAME'_'$VERSION'_'bin find . -perm 666 -exec chmod 644 {} \; find . -perm 664 -exec chmod 644 {} \; find . -perm 600 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; find . -perm 400 -exec chmod 644 {} \; find . -perm 440 -exec chmod 644 {} \; find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 511 -exec chmod 755 {} \; find . -perm 711 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; chown -R root:root . install -m 755 -p -D $CWD/youtranslate $PKG/usr/bin/youtranslate install -m 755 -p -D youtranslate.exe $PKG/usr/share/youtranslate/youtranslate.exe install -m 644 -p -D $CWD/youtranslate.png $PKG/usr/share/pixmaps/youtranslate.png mkdir -p $PKG/usr/share/applications cat << EOF > $PKG/usr/share/applications/$NAME.desktop [Desktop Entry] Type=Application Encoding=UTF-8 Name=YouTranslate! GenericName=Google Translator Utility Comment=A simple application for use Google Translate service in an easy and fast way Comment[it]=Una semplice applicazione per usare Google Translate in modo semplice e veloce Icon=youtranslate Exec=youtranslate Terminal=false Categories=Application;Office; StartupNotify=true EOF ( 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 find . | xargs file | grep "current ar archive" | cut -f 1 -d : | xargs strip -g 2> /dev/null ) mkdir -p $PKG/usr/doc/$NAME-$VERSION/SlackBuild mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/SlackBuild/slack-desc cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/SlackBuild/$NAME.SlackBuild echo "if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database 1> /dev/null &> /dev/null fi" >> $PKG/install/doinst.sh echo >> $PKG/install/doinst.sh echo "if [ -x /usr/bin/gtk-update-icon-cache ]; then /usr/bin/gtk-update-icon-cache -f -q /usr/share/icons/hicolor &> /dev/null fi" >> $PKG/install/doinst.sh echo >> $PKG/install/doinst.sh cd $PKG ADD=$(ls /var/log/packages/ | sed -ne 's/\(gtk-sharp\)-\([^-]\+-[^-]\+-[^-]\+\)/\1 >= \2/p') \ requiredbuilder -v -y -s $CWD $PKG makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.txz if [ "$1" = "--cleanup" ]; then rm -rf $TMP fi