libraries/wxsvg: Updated for version 1.5.11.

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
Matteo Bernardini 2017-01-04 10:27:29 +01:00 committed by Willy Sudiarto Raharjo
parent f23bba9d99
commit 47364552db
No known key found for this signature in database
GPG key ID: 887B8374D7333381
2 changed files with 10 additions and 10 deletions

View file

@ -2,7 +2,7 @@
# Slackware build script for wxsvg
# Copyright 2013-2016 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy
# Copyright 2013-2017 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=wxsvg
VERSION=${VERSION:-1.5.10}
VERSION=${VERSION:-1.5.11}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -64,10 +64,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.?z*
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 {} \;
sh autogen.sh || true
@ -87,7 +87,7 @@ CXXFLAGS="$SLKCFLAGS" \
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

View file

@ -1,8 +1,8 @@
PRGNAM="wxsvg"
VERSION="1.5.10"
VERSION="1.5.11"
HOMEPAGE="http://sourceforge.net/projects/wxsvg/"
DOWNLOAD="http://downloads.sf.net/wxsvg/wxsvg-1.5.10.tar.bz2"
MD5SUM="f9d6aa80acedcf7d88294de42a3fa53e"
DOWNLOAD="http://downloads.sf.net/wxsvg/wxsvg-1.5.11.tar.bz2"
MD5SUM="afaf1e46ed956fc7d5b354213e053d72"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="ffmpeg wxGTK3"