mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-03 21:53:52 +02:00
Waybar: update to 0.9.2, claim maintainer
Added dbusmenugtk option as default for all situations. libnl now works for musl. [ci skip]
This commit is contained in:
parent
a81360e8eb
commit
0e0ff7c5eb
2 changed files with 22 additions and 28 deletions
|
@ -1,8 +0,0 @@
|
||||||
--- src/modules/network.cpp
|
|
||||||
+++ src/modules/network.cpp
|
|
||||||
@@ -2,6 +2,7 @@
|
|
||||||
#include <spdlog/spdlog.h>
|
|
||||||
#include <sys/eventfd.h>
|
|
||||||
#include <fstream>
|
|
||||||
+#include <cassert>
|
|
||||||
#include "util/format.hpp"
|
|
|
@ -1,43 +1,45 @@
|
||||||
# Template file for 'Waybar'
|
# Template file for 'Waybar'
|
||||||
pkgname=Waybar
|
pkgname=Waybar
|
||||||
version=0.9.0
|
version=0.9.2
|
||||||
revision=1
|
revision=1
|
||||||
build_style=meson
|
build_style=meson
|
||||||
configure_args="-Dlibnl=$(vopt_if libnl enabled disabled)
|
configure_args="-Dgtk-layer-shell=enabled -Dlibudev=enabled -Dman-pages=enabled
|
||||||
|
-Dsystemd=disabled
|
||||||
|
-Dlibnl=$(vopt_if libnl enabled disabled)
|
||||||
-Dpulseaudio=$(vopt_if pulseaudio enabled disabled)
|
-Dpulseaudio=$(vopt_if pulseaudio enabled disabled)
|
||||||
-Ddbusmenu-gtk=$(vopt_if dbusmenugtk enabled disabled)
|
-Ddbusmenu-gtk=$(vopt_if dbusmenugtk enabled disabled)
|
||||||
-Dsystemd=disabled"
|
-Dmpd=$(vopt_if mpd enabled disabled)"
|
||||||
hostmakedepends="pkg-config glib-devel wayland-devel sway scdoc"
|
hostmakedepends="cmake pkg-config glib-devel wayland-devel scdoc
|
||||||
makedepends="wf-shell libinput-devel wayland-devel wlroots-devel gtkmm-devel spdlog
|
$(vopt_if dbusmenugtk gobject-introspection)"
|
||||||
|
makedepends="libinput-devel wayland-devel gtkmm-devel spdlog eudev-libudev-devel
|
||||||
gtk-layer-shell-devel jsoncpp-devel libglib-devel libsigc++-devel fmt-devel
|
gtk-layer-shell-devel jsoncpp-devel libglib-devel libsigc++-devel fmt-devel
|
||||||
$(vopt_if pulseaudio pulseaudio-devel) $(vopt_if libnl libnl3-devel)
|
$(vopt_if libnl libnl3-devel)
|
||||||
|
$(vopt_if pulseaudio pulseaudio-devel)
|
||||||
$(vopt_if dbusmenugtk libdbusmenu-gtk3-devel)
|
$(vopt_if dbusmenugtk libdbusmenu-gtk3-devel)
|
||||||
$(vopt_if mpd libmpdclient-devel)"
|
$(vopt_if mpd libmpdclient-devel)"
|
||||||
short_desc="Polybar-like Wayland Bar for Sway and Wlroots based compositors"
|
short_desc="Polybar-like Wayland Bar for Sway and Wlroots based compositors"
|
||||||
maintainer="DirectorX <void.directorx@protonmail.com>"
|
maintainer="Érico Nogueira <ericonr@disroot.org>"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
homepage="https://github.com/Alexays/Waybar"
|
homepage="https://github.com/Alexays/Waybar"
|
||||||
changelog="https://github.com/Alexays/Waybar/releases"
|
changelog="https://github.com/Alexays/Waybar/releases"
|
||||||
distfiles="https://github.com/Alexays/Waybar/archive/${version}.tar.gz"
|
# date library URLs and checksums taken from subprojects/date.wrap
|
||||||
checksum=65e8397d5a8880cbb9172138e361b0d91f649bc99327d36945e38d1e5dbb157d
|
distfiles="https://github.com/Alexays/Waybar/archive/${version}.tar.gz
|
||||||
|
https://github.com/HowardHinnant/date/archive/v2.4.1.tar.gz
|
||||||
|
https://github.com/mesonbuild/hinnant-date/releases/download/2.4.1-1/hinnant-date.zip"
|
||||||
|
checksum="9740662de19dd6126c23efb69c9dc7f9d918443543af12aee770de39d415bdf8
|
||||||
|
98907d243397483bd7ad889bf6c66746db0d7d2a39cc9aacc041834c40b65b98
|
||||||
|
2061673a6f8e6d63c3a40df4da58fa2b3de2835fd9b3e74649e8279599f3a8f6"
|
||||||
|
|
||||||
build_options="libnl pulseaudio dbusmenugtk mpd"
|
build_options="libnl pulseaudio dbusmenugtk mpd"
|
||||||
build_options_default="pulseaudio mpd"
|
build_options_default="libnl pulseaudio dbusmenugtk mpd"
|
||||||
|
|
||||||
desc_option_libnl="Enable libnl support for network related features"
|
desc_option_libnl="Enable libnl support for network related features"
|
||||||
desc_option_dbusmenugtk="Enable support for tray"
|
desc_option_dbusmenugtk="Enable support for tray"
|
||||||
desc_option_mpd="Enable support for MPD"
|
desc_option_mpd="Enable support for MPD"
|
||||||
|
|
||||||
|
pre_configure() {
|
||||||
if [ -z "$CROSS_BUILD" ]; then
|
cp -rv ../date-2.4.1 subprojects/
|
||||||
# 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() {
|
post_install() {
|
||||||
vlicense LICENSE
|
vlicense LICENSE
|
||||||
|
|
Loading…
Add table
Reference in a new issue