mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 19:22:20 +01:00
24 lines
603 B
Plaintext
24 lines
603 B
Plaintext
# Description: The LXQt session manager for Wayland
|
|
# URL: https://github.com/lxqt/lxqt-wayland-session
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: wayland layer-shell-qt qtxdg-tools liblxqt lxqt-themes xdg-user-dirs
|
|
# Optional: hyprland kwin labwc river sway wayfire
|
|
|
|
name=lxqt-wayland-session
|
|
version=0.1.1
|
|
release=1
|
|
|
|
source=(https://github.com/lxqt/$name/releases/download/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
mkdir -p build
|
|
cd build
|
|
cmake "$SRC/$name-$version" \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-Wno-dev
|
|
make
|
|
|
|
make DESTDIR="$PKG" install
|
|
}
|