libraries/wxSQLite3: Updated for version 3.5.3.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Edinaldo P. Silva 2017-04-23 08:36:42 +07:00 committed by Willy Sudiarto Raharjo
parent eb0c74d329
commit 7d52f151d5
3 changed files with 14 additions and 10 deletions

View file

@ -12,7 +12,7 @@ wxSQLite3: wxSQLite3 is a C++ wrapper around the public domain SQLite 3.x
wxSQLite3: database and is specifically designed for use in programs based on
wxSQLite3: the wxWidgets library.
wxSQLite3:
wxSQLite3: Home Page: http://wxcode.sourceforge.net/components/wxsqlite3/
wxSQLite3: Home Page: http://utelle.github.io/wxsqlite3/docs/html/index.html
wxSQLite3:
wxSQLite3:
wxSQLite3:

View file

@ -2,7 +2,7 @@
#
# Slackware build script for wxSQLite3.
#
# Copyright 2015 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# Copyright 2015-2017 Edinaldo P. Silva, Rio de Janeiro, Brazil.
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,13 +23,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=wxSQLite3
VERSION=${VERSION:-3.3.1}
VERSION=${VERSION:-3.5.3}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$(uname -m)" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$(uname -m) ;;
esac
@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -72,6 +72,8 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
autoreconf -fiv
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
@ -81,10 +83,12 @@ 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 -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true

View file

@ -1,8 +1,8 @@
PRGNAM="wxSQLite3"
VERSION="3.3.1"
HOMEPAGE="http://wxcode.sourceforge.net/components/wxsqlite3/"
DOWNLOAD="http://sourceforge.net/projects/wxcode/files/Components/wxSQLite3/wxsqlite3-3.3.1.tar.gz"
MD5SUM="605e723d13c3939bdff5239333920b0a"
VERSION="3.5.3"
HOMEPAGE="http://utelle.github.io/wxsqlite3/docs/html/index.html"
DOWNLOAD="https://github.com/utelle/wxsqlite3/archive/v3.5.3/wxsqlite3-3.5.3.tar.gz"
MD5SUM="daba15dd6ca0decfe1b1557f23cb0753"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="wxPython"