2021-06-15 10:26:26 +02:00
|
|
|
#!/bin/bash
|
2021-04-26 00:06:40 +02:00
|
|
|
|
|
|
|
# variables
|
2021-06-15 15:15:18 +02:00
|
|
|
VERSION=${VERSION:-"trunk"}
|
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)
|
|
|
|
|
|
|
|
REPOSITORY=/home/installs/SlackBuilds/repositories/$PRGNAM
|
|
|
|
PREFIX=/usr
|
|
|
|
|
|
|
|
# nettoyage préalable
|
|
|
|
rm -fr $PKG $TMP/$PRGNAM
|
|
|
|
|
|
|
|
mkdir -p $PKG
|
|
|
|
|
|
|
|
# mise en place
|
|
|
|
[ ! -e $REPOSITORY ] && git clone https://github.com/swaywm/sway $REPOSITORY
|
2021-06-15 10:59:49 +02:00
|
|
|
cd $REPOSITORY
|
|
|
|
git pull --all
|
2021-04-26 00:06:40 +02:00
|
|
|
|
2021-07-26 18:32:05 +02:00
|
|
|
# WLROOTS_REPOSITORY=/home/installs/SlackBuilds/repositories/wlroots
|
|
|
|
# [ ! -e $WLROOTS_REPOSITORY ] && git clone https://github.com/swaywm/wlroots $WLROOTS_REPOSITORY
|
|
|
|
# cd $WLROOTS_REPOSITORY
|
|
|
|
# git pull --all
|
|
|
|
|
2021-04-26 00:06:40 +02:00
|
|
|
cp -R $REPOSITORY $TMP/
|
|
|
|
cd $TMP/$PRGNAM/
|
2021-06-15 15:15:18 +02:00
|
|
|
|
2021-07-26 18:32:05 +02:00
|
|
|
# mkdir subprojects
|
|
|
|
# cp -R $WLROOTS_REPOSITORY subprojects/
|
|
|
|
|
2021-06-15 15:15:18 +02:00
|
|
|
[ "x$VERSION" == "xtrunk" ] && VERSION="git_$(git log -1 --format=%h_%ad --date=format:%Y.%m.%d)" || git checkout $VERSION
|
|
|
|
|
2021-05-01 12:07:45 +02:00
|
|
|
meson setup \
|
|
|
|
--prefix /usr \
|
|
|
|
--mandir /usr/man/ \
|
|
|
|
-Dsd-bus-provider=basu \
|
|
|
|
-Dtray=auto \
|
|
|
|
-Dlogind=enabled \
|
|
|
|
-Dlogind-provider=elogind \
|
|
|
|
build/
|
2021-04-26 00:06:40 +02:00
|
|
|
ninja -C build/
|
|
|
|
cd build/
|
|
|
|
meson install --destdir=$PKG
|
|
|
|
cd ../
|
|
|
|
|
2021-07-19 13:40:41 +02:00
|
|
|
# https://github.com/swaywm/sway/wiki/Running-Sway-without-systemd
|
|
|
|
chmod +s $PKG$PREFIX/bin/sway
|
|
|
|
|
2021-05-01 12:07:45 +02:00
|
|
|
cat <<EOF > $PKG$PREFIX/bin/start_sway.sh
|
2021-06-15 10:26:26 +02:00
|
|
|
#!/bin/bash
|
2021-05-01 12:07:45 +02:00
|
|
|
|
|
|
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
|
|
|
export QT_QPA_PLATFORM=wayland-egl
|
|
|
|
export QT_WAYLAND_FORCE_DPI=physical
|
|
|
|
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
|
|
|
|
|
|
|
|
export SAL_USE_VCLPLUGIN=gtk3
|
|
|
|
|
|
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
|
|
export MOZ_DBUS_REMOTE=1
|
|
|
|
|
|
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
|
|
|
|
|
|
# export GDK_BACKEND=wayland
|
|
|
|
export CLUTTER_BACKEND=gdk
|
|
|
|
|
|
|
|
export SDL_VIDEODRIVER=wayland
|
|
|
|
|
2021-07-19 13:40:41 +02:00
|
|
|
#export XDG_CURRENT_DESKTOP=sway
|
|
|
|
export XDG_CURRENT_DESKTOP=Unity # for tray ?
|
2021-05-01 12:07:45 +02:00
|
|
|
|
|
|
|
[ -e $HOME/.profile ] && . $HOME/.profile
|
|
|
|
|
|
|
|
exec sway
|
|
|
|
EOF
|
|
|
|
chmod +x $PKG$PREFIX/bin/start_sway.sh
|
|
|
|
|
|
|
|
sed -i 's|Exec=sway|Exec=/usr/bin/start_sway.sh|' $PKG$PREFIX/share/wayland-sessions/sway.desktop
|
|
|
|
|
2021-04-26 00:06:40 +02:00
|
|
|
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 {} \;
|
|
|
|
|
|
|
|
# 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 (i3-compatible Wayland compositor)
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM:
|
|
|
|
$PRGNAM: https://github.com/swaywm/sway
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# empaquetage
|
|
|
|
rm -f $PKG/{,usr/}lib$(uname -m | grep -o 64)/*.la
|
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.txz
|