libraries/php-mssql: Updated for version 5.4.45.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2016-01-06 07:09:07 +07:00
parent dfc3c3b4b1
commit da799258d2
2 changed files with 9 additions and 9 deletions

View file

@ -24,7 +24,7 @@
SRCNAM=php
PRGNAM=php-mssql
VERSION=5.4.13
VERSION=${VERSION:-5.4.45}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -65,10 +65,10 @@ tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2
cd $SRCNAM-$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 {} \;
cd ext/mssql/
@ -99,7 +99,7 @@ make install DESTDIR=$PKG EXTENSION_DIR=$EXTENSION_DIR
install -m 644 $CWD/mssql.ini $PKG/etc/php/mssql.ini.new
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="php-mssql"
VERSION="5.4.13"
VERSION="5.4.45"
HOMEPAGE="http://www.php.net/manual/en/book.mssql.php"
DOWNLOAD="http://museum.php.net/php5/php-5.4.13.tar.bz2"
MD5SUM="cacd308e978b7cf9ba4993196612ccf7"
DOWNLOAD="https://secure.php.net/distributions/php-5.4.45.tar.bz2"
MD5SUM="185f67f1ca652b18bc0cca9d7edbde7c"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="freetds"