games/smokinguns: Copy SlackBuild to docs, i386->i586, http->https.

Signed-off-by: bedlam <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
D Woodfall 2023-05-16 20:27:55 +01:00 committed by Willy Sudiarto Raharjo
parent 001594d2a1
commit c114c72185
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 15 additions and 3 deletions

View file

@ -30,7 +30,18 @@ BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
ARCH=i386 # i386 binary only
# 2023-05-16 DW: need an ARCH test
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i586 ;;
*) ARCH=$( uname -m ) ;;
esac
fi
if [[ $ARCH != i?86 ]]; then
printf "\n$ARCH is not supported... \n" >/dev/stderr
exit 1
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
@ -84,6 +95,7 @@ install -m 0755 -D $CWD/launcher.sh $PKG/usr/bin/smokinguns
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
find $PKG/opt -iname *.txt -type f -exec cp {} $PKG/usr/doc/$PRGNAM-$VERSION \;
cp $PKG/opt/$PRGNAM/README $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc

View file

@ -1,7 +1,7 @@
PRGNAM="smokinguns"
VERSION="1.1"
HOMEPAGE="http://www.smokin-guns.org/"
DOWNLOAD="http://www.smokin-guns.org/downloads/Smokin_Guns_1.1.zip"
HOMEPAGE="https://www.smokin-guns.org/"
DOWNLOAD="https://www.smokin-guns.org/downloads/Smokin_Guns_1.1.zip"
MD5SUM="f6eac64fa534fa9ff121dda5fd2dba44"
DOWNLOAD_x86_64="UNSUPPORTED"
MD5SUM_x86_64=""