diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-05-09 02:00:15 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-16 22:24:18 -0500 |
commit | 6cb750591ea40a391800ea92c37a9f47cd095f06 (patch) | |
tree | c01483aa455237a1dc7a51e1aa550d5cff46cd67 /libraries/Mako/Mako.SlackBuild | |
parent | e6185a9ff426139dd35ab479fe7335af8ce11d19 (diff) | |
download | slackbuilds-6cb750591ea40a391800ea92c37a9f47cd095f06.tar.gz |
libraries/Mako: Updated for version 0.3.2.
Diffstat (limited to 'libraries/Mako/Mako.SlackBuild')
-rw-r--r-- | libraries/Mako/Mako.SlackBuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libraries/Mako/Mako.SlackBuild b/libraries/Mako/Mako.SlackBuild index f06e7fe0eb..4bc039d13e 100644 --- a/libraries/Mako/Mako.SlackBuild +++ b/libraries/Mako/Mako.SlackBuild @@ -5,7 +5,7 @@ # Written by Larry Hajali <larryhaja[at]gmail[dot]com> PRGNAM=Mako -VERSION=${VERSION:-0.2.5} +VERSION=0.3.2 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -32,12 +32,11 @@ find . \ python setup.py install --root=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) +# Remove *.pyc files +find $PKG -name "*.pyc" -exec rm -f {} \; + +find $PKG | xargs 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 cp -a \ |