From f1496db6a4110be2bf1d59c81d686a2af034a544 Mon Sep 17 00:00:00 2001 From: Iskar Enev Date: Tue, 11 May 2010 19:46:04 +0200 Subject: network/transmission: Updated for version 1.06 --- network/transmission/transmission.SlackBuild | 40 +++++++++++++++------------- 1 file changed, 22 insertions(+), 18 deletions(-) (limited to 'network/transmission/transmission.SlackBuild') diff --git a/network/transmission/transmission.SlackBuild b/network/transmission/transmission.SlackBuild index ca4d78cac4..232890f4a0 100644 --- a/network/transmission/transmission.SlackBuild +++ b/network/transmission/transmission.SlackBuild @@ -1,22 +1,22 @@ #!/bin/sh # Slackware build script for transmission -# Written by Vasilis Papavasileiou -# Modified by the SlackBuilds.org project -# (assumed to be in public domain per our submission policy) +# Written by Iskar Enev + +# Update by Andrew Brouwers, abrouwers at gmail dot com PRGNAM=transmission -ORIG_PRGNAM=Transmission -VERSION=0.6.1 +VERSION=1.06 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -DOCS="AUTHORS LICENSE NEWS README" +DOCUMENTATION="AUTHORS COPYING INSTALL LICENSE NEWS README" if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" @@ -24,26 +24,30 @@ elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" fi +set -e + rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $ORIG_PRGNAM-$VERSION -tar -xzvf $CWD/$ORIG_PRGNAM-$VERSION.tar.gz || exit 1 -cd $ORIG_PRGNAM-$VERSION || exit 1 +cd $TMP +rm -rf $PRGNAM-$VERSION +mkdir -p $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . -# Patch mk/common.mk so that we can install cleanly (with DESTDIR) -patch -p1 <$CWD/Makefile.patch - CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ - || exit 1 + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --disable-static \ + --verbose -make || exit 1 -make install DESTDIR=$PKG || exit 1 +make +make install DESTDIR=$PKG ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null @@ -52,11 +56,11 @@ make install DESTDIR=$PKG || exit 1 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; - for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done + for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done ) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp $DOCS $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCUMENTATION $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install -- cgit v1.2.3