#!/bin/sh # Heavily based on the Slackware 13.0 SlackBuild # http://clipgrab.de/start_en.html # Packager Andrea Sciucca ( gohanz at infinito.it) # http://www.slacky.it # # Required ffmpeg # # Exit on most errors set -e CWD=`pwd` TMP=${TMP:-/tmp/txz} NAME=clipgrab PKG=$TMP/package/$NAME VERSION=3.0.5 ARCH=${ARCH:-i486} BUILD=1as SOURCE=http://clipgrab.de/download/$NAME-$VERSION.tar.bz2 if [ ! -e $NAME-$VERSION.tar.bz2 ]; 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 xvjf $CWD/$NAME-$VERSION.tar.bz2 echo -e "\E[0;32m+---------------------------+\E[0;0m" echo -e "\E[0;32m| Start SlackBuild ClipGrab |\E[0;0m" echo -e "\E[0;32m+---------------------------+\E[0;0m" cd $NAME 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 . mkdir -p $PKG/usr/bin cat << EOF > $PKG/usr/bin/clipgrab #!/bin/bash cd /usr/share/clipgrab exec /usr/share/clipgrab/clipgrab EOF chmod 755 $PKG/usr/bin/* mkdir -p $PKG/usr/share/clipgrab # Configure: qmake -unix PREFIX=/usr QMAKE_LIBS="$SLKLDFLAGS" QMAKE_CFLAGS="$SLKCFLAGS" QMAKE_CXXFLAGS="$SLKCFLAGS" -o Makefile clipgrab.pro # Build and install: LDFLAGS="$SLKLDFLAGS" \ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ make install -m 755 -p clipgrab $PKG/usr/share/clipgrab cp *.qm $PKG/usr/share/clipgrab mkdir -p $PKG/usr/share/applications cat << EOF > $PKG/usr/share/applications/$NAME.desktop [Desktop Entry] Type=Application Encoding=UTF-8 Name=ClipGrab GenericName=Video Downloader GenericName[de]=Video-Downloader GenericName[it]=Video-Downloader Comment=Download videos and convert it Comment[de]=Videos herunterladen und konvertieren Comment[it]=Scaricatore e convertitore video Icon=/usr/share/pixmaps/clipgrab.png Exec=clipgrab TryExec=clipgrab Terminal=false Categories=Qt;AudioVideo;Audio;Video; EOF mkdir -p $PKG/usr/share/pixmaps cp -a $CWD/clipgrab.png $PKG/usr/share/pixmaps/clipgrab.png 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-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 strip --strip-unneeded $PKG/usr/share/clipgrab/clipgrab cd $PKG ADD=$(ls /var/log/packages/ | sed -ne 's/\(ffmpeg\)-\([^-]\+-[^-]\+-[^-]\+\)/\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