[y/eliot] tidy up and add helper script

This commit is contained in:
Gwenhael Le Moine 2024-02-06 13:02:24 +01:00
parent 84119ef496
commit 8c475e9ab3
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -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 <<EOF > $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 <<EOF > $PKG/install/slack-desc
@ -96,17 +119,17 @@ cat <<EOF > $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}