slackbuilds/_unmaintained/ap/legendary/SlackBuild

66 lines
1.4 KiB
Text
Raw Normal View History

2021-06-15 10:26:26 +02:00
#!/bin/bash
2020-05-20 09:03:13 +02:00
# variables
2020-06-25 11:23:11 +02:00
TAG=gwh
2020-05-20 09:03:13 +02:00
TMP=/tmp/$TAG
CWD=$(pwd)
OUTPUT=/tmp
PRGNAM=$(basename $CWD)
PKG=$TMP/pkg-$PRGNAM
DOCS="LICENSE README.md"
ARCH=$(uname -m)
BUILD=1
PREFIX=/usr
SLCKFLAGS="-fPIC -O2"
REPOSITORY=/var/cache/SlackBuilds.gwh/$PRGNAM
2020-05-20 09:03:13 +02:00
# nettoyage pr<70>alable
rm -fr $PKG $TMP/$PRGNAM
mkdir -p $PKG
# mise en place
[ ! -e $REPOSITORY ] && git clone https://github.com/derrod/legendary.git $REPOSITORY
2021-06-15 10:59:49 +02:00
cd $REPOSITORY
git pull --all
2020-05-20 09:03:13 +02:00
cp -R $REPOSITORY $TMP/$PRGNAM
cd $TMP/$PRGNAM
2023-03-22 16:56:02 +01:00
VERSION="$(git rev-list --count HEAD)_$(git log -1 --format=%h)"
2020-05-20 09:03:13 +02:00
# installation
python3 ./setup.py install --root=$PKG
mkdir -p $PKG/usr/doc/$PRGNAM
cp -R $DOCS $PKG/usr/doc/$PRGNAM
# correction
cd $PKG
chown -R root:root *
# embaumement
mkdir -p $PKG/install
cat <<EOF > $PKG/install/slack-desc
$PRGNAM: $PRGNAM (A free and open-source replacement for the Epic Games Launcher)
$PRGNAM:
$PRGNAM: Legendary is an open-source game launcher that can download and install games
$PRGNAM: from the Epic Games platform on Linux and Windows. It's name as a
$PRGNAM: tongue-in-cheek play on tiers of item rarity in many MMORPGs.
$PRGNAM:
$PRGNAM: Right now Legendary is in beta and not feature-complete.
$PRGNAM:
$PRGNAM:
$PRGNAM: https://github.com/derrod/legendary
$PRGNAM:
EOF
# empaquetage
cd $PKG
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
2023-08-16 12:23:26 +02:00
/sbin/makepkg --linkadd y --chown n --prepend $OUTPUT/$PRGNAM-$(echo $VERSION | sed 's/-//g')-$ARCH-$BUILD$TAG.txz