libraries/mysql-connector-c++: Downgraded to 1.1.3.
This update broke mysql-workbench since it introduced new option parameter. Will have to wait until next mysql-workbench is released. Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
fc5c707200
commit
e87ea2097c
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for mysql-connector-c++
|
||||
|
||||
# Copyright 2013-2014 Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
||||
# Copyright 2013-2015 Willy Sudiarto Raharjo <willysr@slackbuilds.org>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,8 +23,8 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=mysql-connector-c++
|
||||
VERSION=${VERSION:-1.1.5}
|
||||
BUILD=${BUILD:-1}
|
||||
VERSION=${VERSION:-1.1.3}
|
||||
BUILD=${BUILD:-3}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -82,6 +82,10 @@ cd build
|
|||
make install DESTDIR=$PKG
|
||||
cd ..
|
||||
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
mv $PKG/usr/lib/ $PKG/usr/lib${LIBDIRSUFFIX}/
|
||||
fi
|
||||
|
||||
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
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="mysql-connector-c++"
|
||||
VERSION="1.1.5"
|
||||
VERSION="1.1.3"
|
||||
HOMEPAGE="https://dev.mysql.com/downloads/connector/cpp/"
|
||||
DOWNLOAD="https://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-1.1.5.tar.gz"
|
||||
MD5SUM="7cdffd0aa6e48035485081cf94521b02"
|
||||
DOWNLOAD="http://cdn.mysql.com/Downloads/Connector-C++/mysql-connector-c++-1.1.3.tar.gz"
|
||||
MD5SUM="65828789b8d92e6118e7f24568f34a07"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
|
|
Loading…
Reference in New Issue