#!/bin/sh # Heavily based on the Slackware 12.2 SlackBuild # http://ubuntuwin.blogspot.com # Packager Andrea Sciucca ( gohanz at infinito.it) # http://www.slacky.it # # Required: libnotify, notify-python # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/tgz} PKG=$TMP/package/wia NAME=wia VERSION=1.3.2 CHOST=i486 ARCH=${ARCH:-noarch} BUILD=2as if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xvzf $CWD/$NAME'_'1.3-2.tar.gz echo -e "\E[0;32m+----------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild WIA |\E[0;0m" echo -e "\E[0;32m+----------------------+\E[0;0m" cd $NAME'_'1.3-2_all cp -r source/* $PKG install -m 755 $CWD/wia_app $PKG/usr/bin ## Linking wia.desktop from /etc/xdg/autostart to /usr/share/autostart mkdir -p $PKG/usr/share/autostart ( cd $PKG/usr/share/autostart ln -s /etc/xdg/autostart/wia.desktop . ) mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a \ README.txt \ $PKG/usr/doc/$NAME-$VERSION 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 echo "if [ -x /usr/bin/update-mime-database ]; then /usr/bin/update-mime-database /usr/share/mime &> /dev/null fi" >> $PKG/install/doinst.sh echo "" >> $PKG/install/doinst.sh echo "if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database &> /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 cd $PKG 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 . ADD="libnotify >= 0.4.5-i686-1as, notify-python >= 0.1.1-i486-1as, pygtk >= 2.12.1-i486-2" \ 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