36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
# Template file for 'way-cooler'
|
|
pkgname=way-cooler
|
|
version=0.8.0
|
|
revision=2
|
|
build_style=cargo
|
|
hostmakedepends="pkg-config git python3 glib-devel"
|
|
makedepends="dbus-devel libglib-devel cairo-devel wayland-devel wlc-devel
|
|
libxcb-devel gdk-pixbuf-devel lua-devel"
|
|
short_desc="Customizable Wayland compositor written in Rust with Lua API"
|
|
maintainer="maxice8 <thinkabit.ukim@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/way-cooler/way-cooler"
|
|
distfiles="https://github.com/way-cooler/way-cooler/archive/v${version}.tar.gz"
|
|
checksum=34c67a8a616992d55cb3669dcfbaa5a92f6872193f216828ec2f4a2fad524dc0
|
|
nocross="error compiling wayland-sys: mismatched types --> src/wayland/gamma_control.rs:101:13"
|
|
|
|
post_install() {
|
|
chmod u+s "${DESTDIR}"/usr/bin/way-cooler
|
|
|
|
# install the configuration on the examples
|
|
vsconf config/rc.lua
|
|
vsconf config/init.lua
|
|
|
|
# normally the docs would be in a separate -doc package but the end
|
|
# user has to configure the wayland compositor and these provide
|
|
# essential information
|
|
vmkdir usr/share/docs/"${pkgname}"
|
|
vcopy "docs/*" usr/share/docs/"${pkgname}"
|
|
|
|
# Install .desktop file
|
|
vmkdir usr/share/wayland-sessions
|
|
vcopy way-cooler.desktop usr/share/wayland-sessions
|
|
|
|
vlicense LICENSE
|
|
}
|