#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://www.qbittorrent.org # Packager Andrea Sciucca ( gohanz at infinito.it) # http://www.slacky.it # # Required geoip, libtorrent-rasterbar, zziplib # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} NAME=qbittorrent PKG=$TMP/package/$NAME VERSION=1.5.4 ARCH=${ARCH:-i486} BUILD=1lg SOURCE=http://switch.dl.sourceforge.net/sourceforge/qbittorrent/$NAME-$VERSION.tar.gz if [ ! -e $NAME-$VERSION.tar.gz ]; then wget -c $SOURCE fi if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686"; SLKLDFLAGS=""; LIBDIRSUFFIX=""; CHOST=i486 elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686"; SLKLDFLAGS=""; LIBDIRSUFFIX=""; CHOST=i486 elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC"; SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64" fi if [ ! -d $TMP ]; then mkdir -p $TMP fi if [ ! -d $PKG ]; then mkdir -p $PKG fi cd $TMP tar xvzf $CWD/$NAME-$VERSION.tar.gz echo -e "\E[0;32m+------------------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild qBittorrent |\E[0;0m" echo -e "\E[0;32m+------------------------------+\E[0;0m" cd $NAME-$VERSION 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 . # Configure: qmake -unix PREFIX=/usr QMAKE_LIBS="$SLKLDFLAGS" QMAKE_CFLAGS="$SLKCFLAGS" QMAKE_CXXFLAGS="$SLKCFLAGS" -o Makefile qbittorrent.pro # Build and install: LDFLAGS="$SLKLDFLAGS" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ make mkdir -p $PKG/usr/bin install -m 755 -p src/qbittorrent $PKG/usr/bin mkdir -p $PKG/usr/share/icons/hicolor/{16x16,22x22,24x24,32x32,36x36,48x48,64x64,72x72,96x96,128x128,192x192}/apps/ install -m 644 -p -D src/menuicons/16x16/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/16x16/apps/ install -m 644 -p -D src/menuicons/22x22/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/22x22/apps/ install -m 644 -p -D src/menuicons/24x24/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/24x24/apps/ install -m 644 -p -D src/menuicons/32x32/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/32x32/apps/ install -m 644 -p -D src/menuicons/36x36/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/36x36/apps/ install -m 644 -p -D src/menuicons/48x48/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/48x48/apps/ install -m 644 -p -D src/menuicons/64x64/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/64x64/apps/ install -m 644 -p -D src/menuicons/72x72/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/72x72/apps/ install -m 644 -p -D src/menuicons/96x96/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/96x96/apps/ install -m 644 -p -D src/menuicons/128x128/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/128x128/apps/ install -m 644 -p -D src/menuicons/192x192/apps/qbittorrent.png $PKG/usr/share/icons/hicolor/192x192/apps/ mkdir -p $PKG/usr/share/applications/ install -m 644 -p src/Icons/qBittorrent.desktop $PKG/usr/share/applications/ mkdir -p $PKG/usr/man/man1 install -m 644 -p doc/qbittorrent.1 $PKG/usr/man/man1 mkdir -p $PKG/usr/doc/$NAME-$VERSION cp -a \ AUTHORS COPYING Changelog INSTALL NEWS README TODO \ $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 1> /dev/null &> /dev/null fi" >> $PKG/install/doinst.sh echo "" >> $PKG/install/doinst.sh gzip -9 $PKG/usr/man/*/* strip --strip-unneeded $PKG/usr/bin/* cd $PKG 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