44 lines
1.5 KiB
Bash
44 lines
1.5 KiB
Bash
# Template file for 'Waybar'
|
|
pkgname=Waybar
|
|
version=0.9.0
|
|
revision=1
|
|
build_style=meson
|
|
configure_args="-Dlibnl=$(vopt_if libnl enabled disabled)
|
|
-Dpulseaudio=$(vopt_if pulseaudio enabled disabled)
|
|
-Ddbusmenu-gtk=$(vopt_if dbusmenugtk enabled disabled)
|
|
-Dsystemd=disabled"
|
|
hostmakedepends="pkg-config glib-devel wayland-devel sway scdoc"
|
|
makedepends="wf-shell libinput-devel wayland-devel wlroots-devel gtkmm-devel spdlog
|
|
jsoncpp-devel libglib-devel libsigc++-devel fmt-devel
|
|
$(vopt_if pulseaudio pulseaudio-devel) $(vopt_if libnl libnl3-devel)
|
|
$(vopt_if dbusmenugtk libdbusmenu-gtk3-devel)
|
|
$(vopt_if mpd libmpdclient-devel)"
|
|
short_desc="Polybar-like Wayland Bar for Sway and Wlroots based compositors"
|
|
maintainer="DirectorX <void.directorx@protonmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/Alexays/Waybar"
|
|
changelog="https://github.com/Alexays/Waybar/releases"
|
|
distfiles="https://github.com/Alexays/Waybar/archive/${version}.tar.gz"
|
|
checksum=65e8397d5a8880cbb9172138e361b0d91f649bc99327d36945e38d1e5dbb157d
|
|
|
|
build_options="libnl pulseaudio dbusmenugtk mpd"
|
|
build_options_default="pulseaudio mpd"
|
|
|
|
desc_option_libnl="Enable libnl support for network related features"
|
|
desc_option_dbusmenugtk="Enable support for tray"
|
|
desc_option_mpd="Enable support for MPD"
|
|
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
# Requires gobject introspection
|
|
build_options_default+=" dbusmenugtk"
|
|
fi
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) ;; # Has broken network headers on musl
|
|
*) build_options_default+=" libnl"
|
|
esac
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|