diff options
author | Marcel Saegebarth <marc@mos6581.de> | 2015-01-13 06:25:45 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-01-13 06:25:45 +0700 |
commit | 9b670f181a2cce4b63682f5edfa278bbbc1a32ef (patch) | |
tree | b7f12d51dd3edccb38e0aa9f207979dd5293d270 /libraries/zend-opcache/zend-opcache.SlackBuild | |
parent | 66f40c08e72b4ab86c51b3434680e00260d07ffb (diff) | |
download | slackbuilds-9b670f181a2cce4b63682f5edfa278bbbc1a32ef.tar.gz |
libraries/zend-opcache: Updated for version 7.0.4.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/zend-opcache/zend-opcache.SlackBuild')
-rw-r--r-- | libraries/zend-opcache/zend-opcache.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libraries/zend-opcache/zend-opcache.SlackBuild b/libraries/zend-opcache/zend-opcache.SlackBuild index ab75f7c7fa..7775b198e3 100644 --- a/libraries/zend-opcache/zend-opcache.SlackBuild +++ b/libraries/zend-opcache/zend-opcache.SlackBuild @@ -1,8 +1,8 @@ #!/bin/sh -# SlackBuild script for "zend-opcache". +# Slackware build script for "zend-opcache". -# Copyright 2013-2014 Marcel Saegebarth <marc@mos6581.de> +# Copyright 2013-2015 Marcel Saegebarth <marc@mos6581.de> # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -26,7 +26,7 @@ PRGNAM=zend-opcache SRCNAM=zendopcache -VERSION=${VERSION:-7.0.3} +VERSION=${VERSION:-7.0.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -70,7 +70,7 @@ 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 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; phpize CFLAGS="$SLKCFLAGS" \ @@ -88,7 +88,7 @@ CXXFLAGS="$SLKCFLAGS" \ make make install-modules INSTALL_ROOT=$PKG -find $PKG | xargs file | grep -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 |