slackbuilds/y/steamtinkerlaunch/SlackBuild

81 lines
2.1 KiB
Text
Raw Normal View History

2021-06-15 10:26:26 +02:00
#!/bin/bash
2021-06-10 11:09:31 +02:00
# variables
GITHUB_REPO=frostworx/steamtinkerlaunch
2022-01-22 10:52:07 +01:00
VERSION=${VERSION:-latest} # or VERSION=trunk
2021-06-10 11:09:31 +02:00
TAG=gwh
TMP=/tmp/$TAG
CWD=$(pwd)
OUTPUT=/tmp
PRGNAM=$(basename $CWD)
PKG=$TMP/pkg-$PRGNAM
ARCH=$(uname -m)
BUILD=1
2022-01-22 19:52:02 +01:00
REPOSITORY=/home/installs/SlackBuilds/_repositories/$PRGNAM
2021-06-10 11:09:31 +02:00
# nettoyage pr<70>alable
rm -fr $PKG $TMP/$PRGNAM
mkdir -p $PKG
# mise en place
[ ! -e $REPOSITORY ] && git clone https://github.com/${GITHUB_REPO}.git $REPOSITORY
2021-06-15 10:59:49 +02:00
cd $REPOSITORY
git pull --all
2021-06-10 11:09:31 +02:00
cp -R $REPOSITORY $TMP/$PRGNAM
cd $TMP/$PRGNAM/
2022-01-22 10:52:07 +01:00
2022-10-03 16:35:04 +02:00
[ "x$VERSION" == "xlatest" ] && VERSION=$(git describe --tags --abbrev=0)
2022-01-22 10:52:07 +01:00
[ "x$VERSION" == "x" ] && VERSION=trunk
[ "x$VERSION" == "xtrunk" ] && VERSION="git_$(git log -1 --format=%h_%ad --date=format:%Y.%m.%d)" || git checkout $VERSION
2021-06-10 11:09:31 +02:00
make PREFIX="$PKG/usr" install
mv $PKG/usr/share/doc $PKG/usr/
# correction
cd $PKG
chown -R root:root *
# embaumement
mkdir -p $PKG/install
cat <<EOF > $PKG/install/doinst.sh
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
fi
if [ -x /usr/bin/update-mime-database ]; then
/usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
fi
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
if [ -x /usr/bin/gtk-update-icon-cache ]; then
/usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
fi
fi
EOF
cat <<EOF > $PKG/install/slack-desc
|-----handy-ruler------------------------------------------------------|
$PRGNAM: $PRGNAM (wrapper tool for Steam client: custom options and 3rd party)
$PRGNAM:
$PRGNAM: a Linux wrapper tool for use with the Steam client
$PRGNAM: Steam Tinker Launch (short stl) is a Linux wrapper tool for use with
$PRGNAM: the Steam client which allows customizing and start tools and
$PRGNAM: options for games quickly on the fly (see Features)
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: https://github.com/${GITHUB_REPO}
2021-06-10 11:09:31 +02:00
$PRGNAM:
EOF
# empaquetage
cd $PKG
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
2022-01-22 10:52:07 +01:00
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$(echo ${VERSION} | tr - _)-$ARCH-$BUILD$TAG.txz