slackbuilds/wayland/wlroots/SlackBuild

93 lines
2 KiB
Text
Raw Permalink Normal View History

2022-01-21 11:29:29 +01:00
#!/bin/bash
set -e
2021-04-26 00:06:40 +02:00
# variables
2022-01-21 11:29:29 +01:00
VERSION=${VERSION:-"latest"}
2021-04-26 00:06:40 +02:00
BUILD=1
TAG=gwh
OUTPUT=/tmp
TMP=/tmp/$TAG
CWD=$(pwd)
PRGNAM=$(basename $CWD)
PKG=$TMP/pkg-$PRGNAM
ARCH=$(uname -m)
2022-01-22 19:52:02 +01:00
REPOSITORY=/home/installs/SlackBuilds/_repositories/$PRGNAM
2021-04-26 00:06:40 +02:00
PREFIX=/usr
# nettoyage préalable
rm -fr $PKG $TMP/$PRGNAM
mkdir -p $PKG
# mise en place
2021-11-02 09:23:55 +01:00
[ ! -e $REPOSITORY ] && git clone https://gitlab.freedesktop.org/wlroots/wlroots.git $REPOSITORY
cd $REPOSITORY
git pull --all
2021-04-26 00:06:40 +02:00
cp -R $REPOSITORY $TMP/
cd $TMP/$PRGNAM/
2022-01-21 11:29:29 +01:00
case $VERSION in
trunk)
2023-03-23 09:54:21 +01:00
VERSION="git_r$(git rev-list --count HEAD)_$(git log -1 --format=%h)"
2022-01-21 11:29:29 +01:00
;;
latest)
2024-05-27 07:53:51 +02:00
VERSION=$(git tag --sort=-version:refname | head -n1)
2022-01-21 11:29:29 +01:00
git checkout $VERSION
;;
*)
git checkout $VERSION
;;
esac
2021-11-02 09:23:55 +01:00
meson setup \
--prefix /usr \
--mandir /usr/man/ \
build/
2021-04-26 00:06:40 +02:00
ninja -C build/
cd build/
meson install --destdir=$PKG
cd ../
mkdir -p $PKG$PREFIX/doc/$PRGNAM
cp LICENSE *.md $PKG$PREFIX/doc/$PRGNAM/
# correction
cd $PKG
chown -R root:root *
# find $PKG$PREFIX/man -name "*.?" -type f -exec gzip -9 {} \;
2021-04-26 00:06:40 +02:00
# embaumement
mkdir -p $PKG/install
cat <<EOF > $PKG/install/slack-desc
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes 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
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
$PRGNAM: $PRGNAM (A modular Wayland compositor library)
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
$PRGNAM:
2021-11-02 09:23:55 +01:00
$PRGNAM: https://gitlab.freedesktop.org/wlroots/wlroots.git
2021-04-26 00:06:40 +02:00
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