From 4392e67dc83ff8da43a88650e884e3c5cd3d4d5d Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Thu, 5 May 2022 14:05:49 -0400 Subject: [PATCH] games/pcgen: Strip bins/libs, fix ARCH, etc. Signed-off-by: B. Watson Signed-off-by: Willy Sudiarto Raharjo --- games/pcgen/README | 8 +++---- games/pcgen/pcgen.SlackBuild | 46 ++++++++++++++++++++++++++++++------ 2 files changed, 42 insertions(+), 12 deletions(-) diff --git a/games/pcgen/README b/games/pcgen/README index 2fdb066b49..7a6075eca0 100644 --- a/games/pcgen/README +++ b/games/pcgen/README @@ -1,10 +1,8 @@ -PCGen helps you build characters for role-playing games like -[D&D](http://dnd.wizards.com) and -[Pathfinder](http://paizo.com/pathfinderRPG). +PCGen helps you build characters for role-playing games like D&D +(http://dnd.wizards.com) and Pathfinder (http://paizo.com/pathfinderRPG) It's a digital character sheet that handles all the tricky and tedious parts of building characters. You can use it to build one character for yourself, or to keep track of a dozen NPCs for a game world. -This SlackBuild.org installs from the binary distribution, so it's -available for x64 only. +This build is a binary repack, so it's available for x86_64 only. diff --git a/games/pcgen/pcgen.SlackBuild b/games/pcgen/pcgen.SlackBuild index 8482363d8c..4fdc5fa9b5 100644 --- a/games/pcgen/pcgen.SlackBuild +++ b/games/pcgen/pcgen.SlackBuild @@ -8,24 +8,43 @@ # notice and this notice are preserved. This file is offered as-is, # without any warranty. +# 20220505 bkw: Modified by SlackBuilds.org, BUILD=2: +# - this is not noarch. force ARCH=x86_64, and warn user if on some other arch. +# - reword README slightly. +# - don't install windows .exe or .bat launcher. +# - symlink executable to $PATH so command-line users can find it. +# - strip binaries and libraries. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=pcgen VERSION=${VERSION:-"6.09.05"} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} -ARCH="noarch" +ARCH="x86_64" -# 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 fi +U="$( uname -m )" +if [ "$ARCH" != "$U" ]; then + cat < /dev/null || true + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/ cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild