lxqt/labwc/Pkgfile
2024-11-10 15:18:16 -05:00

34 lines
783 B
Plaintext

# Description: A Wayland window-stacking compositor
# URL: https://github.com/labwc/labwc
# Maintainer: Jay Lanagan, j at lngn dot net
# Depends on: librsvg libsfdo wlroots xorg-xwayland scdoc
name=labwc
version=0.8.1
release=1
source=(https://github.com/labwc/labwc/archive/$version/$name-$version.tar.gz)
build() {
meson setup $name-$version build \
--buildtype=release \
--infodir=/usr/info \
--libdir=/usr/lib \
--localstatedir=/var \
--prefix=/usr \
--sysconfdir=/etc \
-Dstrip=true \
-Dxwayland=enabled \
-Dnls=disabled \
-Db_lto=true \
-Db_pie=true
meson compile -C build
DESTDIR=$PKG meson install -C build
mkdir $PKG/usr/share/labwc
mv $PKG/usr/share/doc/* $PKG/usr/share
rm $PKG/usr/share/labwc/README
rmdir $PKG/usr/share/doc
}