diff options
Diffstat (limited to 'multimedia/flowblade/flowblade.SlackBuild')
-rw-r--r-- | multimedia/flowblade/flowblade.SlackBuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/multimedia/flowblade/flowblade.SlackBuild b/multimedia/flowblade/flowblade.SlackBuild index 4e64b3a67e..ea9bab9153 100644 --- a/multimedia/flowblade/flowblade.SlackBuild +++ b/multimedia/flowblade/flowblade.SlackBuild @@ -1,7 +1,7 @@ #!/bin/sh # Slackware build script for flowblade -# Copyright 2013 klaatu @member.fsf.org +# Copyright 2015 klaatu @member.fsf.org # GNU All-Permissive License # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -9,7 +9,7 @@ # without any warranty. PRGNAM=flowblade -VERSION=${VERSION:-0.10.0} +VERSION=${VERSION:-0.18} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -48,8 +48,8 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION +tar xvf $CWD/v"$VERSION".tar.gz +cd $PRGNAM-$VERSION/$PRGNAM-trunk chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -57,10 +57,6 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# patch out gnomevfs dependency -# prefer urllib + mimetypes -patch -p1 ./Flowblade/sequence.py < $CWD/gnomevfs.patch - # install python setup.py install --root=$PKG |