diff options
Diffstat (limited to 'source/l/urwid')
-rw-r--r-- | source/l/urwid/slack-desc | 6 | ||||
-rwxr-xr-x | source/l/urwid/urwid.SlackBuild | 22 |
2 files changed, 19 insertions, 9 deletions
diff --git a/source/l/urwid/slack-desc b/source/l/urwid/slack-desc index 5b1c5ac8..793c35ff 100644 --- a/source/l/urwid/slack-desc +++ b/source/l/urwid/slack-desc @@ -1,8 +1,8 @@ # HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line +# The "handy ruler" below makes it easier to edit a package description. Line # up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also # customary to leave one space after the ':'. |-----handy-ruler-------------------------------------------------------| diff --git a/source/l/urwid/urwid.SlackBuild b/source/l/urwid/urwid.SlackBuild index 084fc74e..2786d54d 100755 --- a/source/l/urwid/urwid.SlackBuild +++ b/source/l/urwid/urwid.SlackBuild @@ -1,9 +1,9 @@ -#!/bin/sh +#!/bin/bash # Slackware build script for urwid # Copyright 2009 Andrew Psaltis <ampsaltis@gmail.com> -# Copyright 2012, 2016 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2012, 2016, 2018 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,9 +25,11 @@ # Modified by Robby Workman <rworkman@slackware.com> +cd $(dirname $0) ; CWD=$(pwd) + PKGNAM=urwid VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-3} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -39,7 +41,14 @@ if [ -z "$ARCH" ]; then esac fi -CWD=$(pwd) +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz" + exit 0 +fi + TMP=${TMP:-/tmp} PKG=$TMP/package-$PKGNAM @@ -56,9 +65,10 @@ find . \ -exec chmod 644 {} \; python setup.py install --root=$PKG || exit 1 +python3 setup.py install --root=$PKG || exit 1 -# Strip this package's sole library, wherever it might be -find $PKG -name "str_util.so" -exec strip --strip-unneeded $PKG 2> /dev/null {} \; +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION # Include the code examples. They're pretty small, so they can't hurt, I guess. |