diff options
Diffstat (limited to 'games/hatari/hatari.SlackBuild')
-rw-r--r-- | games/hatari/hatari.SlackBuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/games/hatari/hatari.SlackBuild b/games/hatari/hatari.SlackBuild index aad63b65a6dfc..9f0904c9cac19 100644 --- a/games/hatari/hatari.SlackBuild +++ b/games/hatari/hatari.SlackBuild @@ -6,6 +6,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20210102 bkw: update for v2.3.1. # 20201218 bkw: # - update for v2.3.0. Can't build older versions, sorry. # - add new dep, python3. @@ -63,7 +64,7 @@ # - add mime type and auto-associate ST disk images and executables. PRGNAM=hatari -VERSION=${VERSION:-2.3.0} +VERSION=${VERSION:-2.3.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -114,7 +115,9 @@ patch -p1 < $CWD/hatariui-create-cfg-if-missing.diff # Man pages go in section 6, fix .TH and see-also refs. Also fix a few # typos and formatting issues. -patch -p1 < $CWD/manpage.diff +P="$CWD/manpage.$VERSION.diff" +[ -e "$P" ] || P="$CWD/manpage.diff" +patch -p1 < $P # cmake doesn't support anything like --bindir, --mandir, --docdir. cheat # a little. |