diff options
Diffstat (limited to 'python/python2-pycrypto/python2-pycrypto.SlackBuild')
-rw-r--r-- | python/python2-pycrypto/python2-pycrypto.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/python2-pycrypto/python2-pycrypto.SlackBuild b/python/python2-pycrypto/python2-pycrypto.SlackBuild index bb9bc9099cca9..a92721bbe2595 100644 --- a/python/python2-pycrypto/python2-pycrypto.SlackBuild +++ b/python/python2-pycrypto/python2-pycrypto.SlackBuild @@ -22,10 +22,13 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220312 bkw: Modified by SlackBuilds.org: PRGNAM must be constant, +# and match PRGNAM in the .info file. + cd $(dirname $0) ; CWD=$(pwd) SRCNAM=pycrypto -PRGNAM=python2-$SRCNAM +PRGNAM=python2-pycrypto VERSION=${VERSION:-2.6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -33,15 +36,12 @@ PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac fi -# 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 "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 |