From 8c475e9ab3d7f218d029f7c3293f05b9323ea3d7 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Tue, 6 Feb 2024 13:02:24 +0100 Subject: [PATCH] [y/eliot] tidy up and add helper script --- y/eliot/SlackBuild | 47 ++++++++++++++++++++++++++++++++++------------ 1 file changed, 35 insertions(+), 12 deletions(-) diff --git a/y/eliot/SlackBuild b/y/eliot/SlackBuild index dcfd254e..becd40fa 100755 --- a/y/eliot/SlackBuild +++ b/y/eliot/SlackBuild @@ -4,7 +4,7 @@ CWD=$(pwd) PRGNAM=$(basename $CWD) VERSION=${VERSION:-latest} -BUILD=${BUILD:-1} +BUILD=${BUILD:-3} TAG=${TAG:-gwh} if [ -z "$ARCH" ]; then @@ -48,6 +48,7 @@ cd $PRGNAM [ "x$VERSION" == "xlatest" ] && VERSION=$(git tag --sort=-taggerdate | head -n1) [ "x$VERSION" == "x" ] && VERSION=trunk [ "x$VERSION" == "xtrunk" ] && VERSION="git_r$(git rev-list --count HEAD)_$(git log -1 --format=%h)" || git checkout $VERSION + chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -66,23 +67,45 @@ CFLAGS="$SLKCFLAGS" \ --sysconfdir=/etc \ --mandir=/usr/man \ --libdir=/usr/lib$(uname -m | grep -o 64) \ - --localstatedir=/var \ --build=$ARCH-slackware-linux \ --host=$ARCH-slackware-linux make make install DESTDIR=$PKG -# 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 +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 # find $PKG/usr/man -type f -exec gzip -9 {} \; # for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -# mkdir $PKG/usr/doc -# mv $PKG/usr/share/doc/motion $PKG/usr/doc/$PRGNAM -# mv $PKG/usr/share/$PRGNAM/examples $PKG/usr/doc/$PRGNAM/ -# rm -rf $PKG/usr/share # We moved the docs from there +mkdir -p $PKG/usr/doc/$PRGNAM +cp -R AUTHORS ChangeLog COPYING* INSTALL LGPL-2.0.txt NEWS README THANKS TODO $PKG/usr/doc/$PRGNAM +cat < $PKG/usr/doc/$PRGNAM/gen-ODS9-dawg.bash +#!/bin/bash + +if [ \$UID = 0 ]; then + echo "Don't run this as root !" + exit 1 +fi + +echo "Downloading necessary data to /tmp/" +curl -s https://www.nongnu.org/eliot/download/letters.txt > /tmp/letters.txt + +echo > /tmp/ods9.txt +for i in \$(seq 2 15); do + curl -s https://raw.githubusercontent.com/patquoi/RadStudio/master/Duplicata/ods9/bin/ods9/\$i.txt >> /tmp/ods9.txt +done + +echo "Generating dictionary…" +/usr/bin/compdic -d 'ODS 9.0' -l /tmp/letters.txt -i /tmp/ods9.txt -o /tmp/ods9.dawg + +echo "Installing dictionary into ~/.config/eliot/ods9.dawg…" +mkdir -p ~/.config/eliot/ +[ -e ~/.config/eliot/ods9.dawg ] && mv ~/.config/eliot/ods9.dawg ~/.config/eliot/ods9.dawg.orig +cp /tmp/ods9.dawg ~/.config/eliot/ods9.dawg +EOF +chmod +x $PKG/usr/doc/$PRGNAM/gen-ODS9-dawg.bash mkdir -p $PKG/install cat < $PKG/install/slack-desc @@ -96,17 +119,17 @@ cat < $PKG/install/slack-desc |-----handy-ruler------------------------------------------------------| $PRGNAM: $PRGNAM (A Scrabble game) $PRGNAM: +$PRGNAM: Eliot is an open source Scrabble game, freely available under the +$PRGNAM: GNU GPL license. $PRGNAM: $PRGNAM: $PRGNAM: $PRGNAM: -$PRGNAM: -$PRGNAM: -$PRGNAM: +$PRGNAM: (see helper script /usr/doc/$PRGNAM/gen-ODS9-dawg.bash) $PRGNAM: $PRGNAM: https://www.nongnu.org/eliot/fr/index.html EOF cd $PKG rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la -/sbin/makepkg --linkadd y --chown n --prepend $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-txz} +/sbin/makepkg --linkadd y --chown n --prepend $OUTPUT/$PRGNAM-$(echo $VERSION | sed 's|eliot_||')-$ARCH-$BUILD$TAG.${PKGTYPE:-txz}