mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
development/geany-plugins: Updated for version 1.26, new maintainer.
Signed-off-by: Ryan P.C. McQuen <ryan.q@linux.com>
This commit is contained in:
parent
1d865b635a
commit
e8d7746e1c
2 changed files with 14 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue