slackbuilds/xap/nwg-look/SlackBuild

82 lines
2 KiB
Text
Raw Normal View History

2022-04-08 15:56:29 +02:00
#!/bin/bash
# variables
GITHUB_REPO=nwg-piotr/nwg-look
VERSION=${VERSION:-latest}
BUILD=1
TAG=gwh
OUTPUT=/tmp
TMP=/tmp/$TAG
CWD=$(pwd)
PRGNAM=$(basename "$CWD")
PKG=$TMP/pkg-$PRGNAM
ARCH=$(uname -m)
REPOSITORY=/var/cache/SlackBuilds.gwh/$PRGNAM
2022-04-08 15:56:29 +02:00
# nettoyage préalable
rm -fr "$PKG" "${TMP:?}/$PRGNAM"
mkdir -p "$PKG"
# mise en place
[ ! -e "$REPOSITORY" ] && git clone https://github.com/${GITHUB_REPO} "$REPOSITORY"
cd "$REPOSITORY" || exit
git pull --all
cp -R "$REPOSITORY" $TMP/
cd "$TMP/$PRGNAM/" || exit
2024-05-27 07:53:51 +02:00
[ "$VERSION" == "latest" ] && VERSION=$(git tag --sort=-version:refname | head -n1)
2022-04-08 15:56:29 +02:00
[ "$VERSION" == "" ] && VERSION=trunk
if [ "$VERSION" == "trunk" ]; then
2023-03-23 09:54:21 +01:00
VERSION="git_r$(git rev-list --count HEAD)_$(git log -1 --format=%h)"
2022-04-08 15:56:29 +02:00
else
git checkout "$VERSION"
fi
make get
make build
mkdir -p "$PKG"/usr/{bin,share/{applications,pixmaps}}
make install DESTDIR="$PKG"
mkdir -p "$PKG"/usr/doc/"$PRGNAM"
cp ./LICENSE ./*.md "$PKG/usr/doc/$PRGNAM/"
# correction
cd "$PKG" || exit
chown -R root:root ./*
# embaumement
mkdir -p "$PKG/install"
cat <<EOF > "$PKG/install/slack-desc"
# HOW TO EDIT THIS FILE:
# The "handy ruler" below kanshis it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# kanshi exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
$PRGNAM: $PRGNAM (GTK3 settings editor)
$PRGNAM:
$PRGNAM: Nwg-look is a GTK3 settings editor, designed to work properly in
$PRGNAM: wlroots-based Wayland environment.
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM: https://github.com/nwg-piotr/nwg-look
EOF
# empaquetage
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"-"$VERSION"-"$ARCH"-$BUILD$TAG.txz