31 lines
983 B
Bash
31 lines
983 B
Bash
# Template file for 'sway'
|
|
pkgname=sway
|
|
version=1.2
|
|
revision=1
|
|
build_style=meson
|
|
conf_files="/etc/sway/config"
|
|
hostmakedepends="pkg-config wayland-devel scdoc git"
|
|
makedepends="wlroots-devel wayland-devel wayland-protocols pcre-devel
|
|
json-c-devel pango-devel cairo-devel gdk-pixbuf-devel"
|
|
depends="swaybg xorg-server-xwayland $(vopt_if elogind "elogind")"
|
|
short_desc="Tiling Wayland compositor compatible with i3"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://swaywm.org"
|
|
distfiles="https://github.com/swaywm/${pkgname}/archive/${version}.tar.gz"
|
|
checksum=9f79382577ee132111c290b4d1a1a3e114ef485595c30cf5f181a11575bda846
|
|
|
|
build_options="elogind"
|
|
desc_option_elogind="Uses elogind instead of setuid for privilege escalation"
|
|
|
|
post_patch() {
|
|
vsed -e 's/werror=true/werror=false/g' -i meson.build
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
if [ -z "$build_option_elogind" ]; then
|
|
# must be setuid without logind!
|
|
chmod u+s ${DESTDIR}/usr/bin/sway
|
|
fi
|
|
}
|