diff options
Diffstat (limited to 'libraries/Mako/Mako.SlackBuild')
-rw-r--r-- | libraries/Mako/Mako.SlackBuild | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libraries/Mako/Mako.SlackBuild b/libraries/Mako/Mako.SlackBuild index f1c1f4efec..f11016374e 100644 --- a/libraries/Mako/Mako.SlackBuild +++ b/libraries/Mako/Mako.SlackBuild @@ -5,16 +5,14 @@ # Written by Larry Hajali <larryhaja[at]gmail[dot]com> PRGNAM=Mako -VERSION=0.3.2 +VERSION=0.3.4 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -39,10 +37,7 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -python setup.py install --root=$PKG - -# Remove *.pyc files -find $PKG -name "*.pyc" -exec rm -f {} \; +python setup.py install --root=$PKG --no-compile find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |