diff options
author | B. Watson <urchlay@slackware.uk> | 2023-05-16 01:59:00 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-05-20 11:17:50 +0700 |
commit | 43bb3639992b3127dc572f06cd1a6ce5c036d944 (patch) | |
tree | 385fbb6988a610dc3be0aac3e93cac20f36fc477 /development/dis6502/dis6502.SlackBuild | |
parent | ae3369a8279580b04d31b0654d1afeb2f461bf26 (diff) |
development/dis6502: Updated for version 0.15+2857fc3_20180311.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/dis6502/dis6502.SlackBuild')
-rw-r--r-- | development/dis6502/dis6502.SlackBuild | 36 |
1 files changed, 26 insertions, 10 deletions
diff --git a/development/dis6502/dis6502.SlackBuild b/development/dis6502/dis6502.SlackBuild index efe451bb9d0e7..12f7c066223fb 100644 --- a/development/dis6502/dis6502.SlackBuild +++ b/development/dis6502/dis6502.SlackBuild @@ -6,10 +6,20 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20230516 bkw: *finally* updated after almost 6 years. upstream moved +# to github but didn't update or remove the old website... +# - updated for latest git (0.15+2857fc3_20180311). used latest git +# rather than the last release because there's a critical bugfix: +# release was missing the LSR zeropage opcode. +# - use upstream's man page, now that there is one. though I had to +# patch it to add a couple options that aren't mentioned there. +# - get rid of no-longer-needed compilefix and helpformat patches. +# - mention the predefs files in README. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=dis6502 -VERSION=${VERSION:-0.12} +VERSION=${VERSION:-0.15+2857fc3_20180311} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -47,25 +57,31 @@ fi set -e +TARVER="$( echo $VERSION | cut -d+ -f1 )" +GITVER="$( echo $VERSION | cut -d+ -f2 )" + rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION +rm -rf $PRGNAM-$TARVER +tar xvf $CWD/$PRGNAM-$TARVER.tar.gz +cd $PRGNAM-$TARVER chown -R root:root . chmod 644 * -patch -p1 < $CWD/compilefix.diff -patch -p1 < $CWD/helpformat.diff # add missing \n to last line of usage msg +# Patch was made by editing the man page. Documents a few options +# that are in the help output, cleans up the formatting, and fixes +# the synopsis. +patch -p1 < $CWD/manpage.diff + +# Patch was made by cloning upstream's repo and doing a 'git diff v0.15'. +patch -p1 < $CWD/$GITVER.diff + make CFLAGS="$SLKCFLAGS -fcommon" mkdir -p $PKG/usr/bin $PKG/usr/man/man1 install -s -m0755 $PRGNAM $PKG/usr/bin - -# man page based on the one from comp.sources.amiga v02i053 release, dated -# October 1986, -gzip -9c < $CWD/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz +gzip -9c < $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz # c64.predefs file is a modified version of the one from the # comp.sources.amiga v02i053 release. atari8.predefs file was created |