diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-07-22 20:07:20 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-07-25 21:52:40 -0500 |
commit | 7a977a29b22ff23041f68736ecda33142e41fa9a (patch) | |
tree | 59144c3d1ce3092655ec4aba0b8272b35f7fe480 /libraries/Mako/Mako.SlackBuild | |
parent | 48423aad4931c66581fc09d8cfec40248c3b8042 (diff) | |
download | slackbuilds-7a977a29b22ff23041f68736ecda33142e41fa9a.tar.gz |
libraries/Mako: Updated for version 0.3.4.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
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 |