diff options
-rw-r--r-- | development/geany-plugins/geany-plugins.SlackBuild | 15 | ||||
-rw-r--r-- | development/geany-plugins/geany-plugins.info | 10 |
2 files changed, 14 insertions, 11 deletions
diff --git a/development/geany-plugins/geany-plugins.SlackBuild b/development/geany-plugins/geany-plugins.SlackBuild index f985500b44..7a6ad83119 100644 --- a/development/geany-plugins/geany-plugins.SlackBuild +++ b/development/geany-plugins/geany-plugins.SlackBuild @@ -2,6 +2,8 @@ # Slackware build script for Geany Plugins +# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com + # Copyright 2010-2013 James Geboski <jgeboski@gmail.com> # Copyright 2013-2014 Michiel van Wessem, Leicester, United Kingdom. # All rights reserved. @@ -24,7 +26,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=geany-plugins -VERSION=${VERSION:-1.25} +VERSION=${VERSION:-1.26} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -65,10 +67,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 cd $PRGNAM-$VERSION 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 {} \; + \( -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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -79,12 +81,13 @@ CXXFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ --build=$ARCH-slackware-linux make make install DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 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 diff --git a/development/geany-plugins/geany-plugins.info b/development/geany-plugins/geany-plugins.info index d154843554..5d0bafc5de 100644 --- a/development/geany-plugins/geany-plugins.info +++ b/development/geany-plugins/geany-plugins.info @@ -1,10 +1,10 @@ PRGNAM="geany-plugins" -VERSION="1.25" +VERSION="1.26" HOMEPAGE="http://plugins.geany.org/" -DOWNLOAD="http://plugins.geany.org/geany-plugins/geany-plugins-1.25.tar.bz2" -MD5SUM="91f32224ab7a1eb8d05bf6cde5743427" +DOWNLOAD="http://plugins.geany.org/geany-plugins/geany-plugins-1.26.tar.bz2" +MD5SUM="024aa0b95a038188cb467dbada5a1bf5" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="geany" -MAINTAINER="Michiel van Wessem" -EMAIL="michiel at slackbuilds dot org" +MAINTAINER="Ryan P.C. McQuen" +EMAIL="ryan.q@linux.com" |