diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-20 16:37:30 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2022-02-21 14:34:27 -0600 |
commit | 41ee84818994d0b71f35d120080ec315f29722d5 (patch) | |
tree | d88277ca19305e7f295532cb95a148e5cb003ceb /games/larn | |
parent | b5824cba38e0d48f83e2234c5a01d18e1141f814 (diff) |
games/larn: Fix 15.0 build.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'games/larn')
-rw-r--r-- | games/larn/larn.SlackBuild | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/games/larn/larn.SlackBuild b/games/larn/larn.SlackBuild index 4e844eff633c..5bd1c843f4a3 100644 --- a/games/larn/larn.SlackBuild +++ b/games/larn/larn.SlackBuild @@ -22,6 +22,13 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220220 bkw: Modified by SlackBuilds.org: +# - fix build on 15.0. +# - actually use SLKCFLAGS. +# - the wrapper script in /usr/games was getting installed without +# +x permission, fix. +# - use a relative symlink (not absolute) for the wrapper script. + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=larn @@ -38,9 +45,6 @@ if [ -z "$ARCH" ]; then 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 @@ -71,26 +75,30 @@ mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf RL_M-$VERSION tar xvf $CWD/RL_M-$VERSION.tar.gz -cd RL_M-$VERSION/src +cd RL_M-$VERSION +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ + +cd src + +# 20220220 bkw: grrrr. +sed -i "s,-Werror,$SLKCFLAGS," Makefile make mv larn .. cd .. mkdir -p $PKG/usr/share/games/larn -cp -a larn $PKG/usr/share/games/larn +install -s -m0755 larn $PKG/usr/share/games/larn mkdir -p $PKG/usr/share/games/larn/data chown -R games:users $PKG/usr/share/games/larn/data chmod 775 $PKG/usr/share/games/larn/data -cp $CWD/larn.sh $PKG/usr/share/games/larn +install -m0755 -oroot -groot $CWD/larn.sh $PKG/usr/share/games/larn mkdir -p $PKG/usr/games cd $PKG/usr/games -ln -fs /usr/share/games/larn/larn.sh larn +ln -s ../share/games/larn/larn.sh larn cd $TMP/RL_M-$VERSION -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a manual.txt README.md changelog.txt $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |