diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-15 11:28:03 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-15 11:28:03 +0700 |
commit | fc99516514f9aceb00c1f62564e3e0221a52a8be (patch) | |
tree | e42d7d75544bb25b10b78c03fa9637a866839589 /network/qwit/qwit.SlackBuild | |
parent | c818fed917054ae503cd02044e9314e3ae4d51f8 (diff) |
network/qwit: Removed (No longer work).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/qwit/qwit.SlackBuild')
-rw-r--r-- | network/qwit/qwit.SlackBuild | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/network/qwit/qwit.SlackBuild b/network/qwit/qwit.SlackBuild deleted file mode 100644 index c182357134..0000000000 --- a/network/qwit/qwit.SlackBuild +++ /dev/null @@ -1,88 +0,0 @@ -#!/bin/sh - -# Slackware build script for qwit - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=qwit -VERSION=${VERSION:-1.1_pre2} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-${VERSION/_/-}-src -tar xvf $CWD/$PRGNAM-${VERSION/_/-}-src.tar.bz2 -cd $PRGNAM-${VERSION/_/-}-src -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# Fix .desktop and CMakeLists.txt. -sed -i '/^Categories/s|Internet||' $PRGNAM.desktop -echo "StartupNotify=false" >> $PRGNAM.desktop -sed -i \ - -e 's|\${QT_BINARY_DIR}|bin|' -e 's|/qca2||' \ - -e 's|/icons|/pixmaps|' CMakeLists.txt - -mkdir build -cd build - cmake -G "Unix Makefiles" \ - -DCMAKE_INSTALL_PREFIX:PATH="/usr" \ - -DLIB_SUFFIX="$LIBDIRSUFFIX" \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_BUILD_TYPE=Release .. - - make VERBOSE=1 - make install DESTDIR=$PKG -cd .. - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS COPYING INSTALL README \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |