diff options
author | Larry Hajali <larryhaja@gmail.com> | 2017-03-15 14:04:22 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-03-18 06:59:24 +0700 |
commit | aef63afe49d64c88d3bede09433788012811b02a (patch) | |
tree | 0e724a15efee531bc6b01fb11ae72b5ec879e42d /python/cssutils/cssutils.SlackBuild | |
parent | d379a8a16cfe6e8c0cfe38b8a2d722b9a2831a8f (diff) | |
download | slackbuilds-aef63afe49d64c88d3bede09433788012811b02a.tar.gz slackbuilds-aef63afe49d64c88d3bede09433788012811b02a.tar.xz |
python/cssutils: Updated for version 1.0.2
Signed-off-by: Larry Hajali <larryhaja[at]gmail[dot]com>
Diffstat (limited to 'python/cssutils/cssutils.SlackBuild')
-rw-r--r-- | python/cssutils/cssutils.SlackBuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/python/cssutils/cssutils.SlackBuild b/python/cssutils/cssutils.SlackBuild index 6b5b98cb72..577dfae533 100644 --- a/python/cssutils/cssutils.SlackBuild +++ b/python/cssutils/cssutils.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for cssutils -# Copyright 2009-2015 Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2009-2017 Larry Hajali <larryhaja[at]gmail[dot]com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=cssutils -VERSION=${VERSION:-1.0.1} +VERSION=${VERSION:-1.0.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -34,7 +34,7 @@ OUTPUT=${OUTPUT:-/tmp} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -62,9 +62,6 @@ for FILE in $(find . -type f -exec grep -Pl '\r$' {} \;); do mv ${FILE}.new $FILE done -# Don't use ez_setup. Use system setuptools or fail. -sed -i '/ez_setup/d' setup.py - python setup.py install --root=$PKG if [ "${PYTHON3:-no}" == "yes" ]; then |