polybar: update to 3.6.2, adopt.

This commit is contained in:
classabbyamp 2022-04-10 23:45:27 -04:00 committed by Leah Neukirchen
parent 87b972a28e
commit e4563d8ff2

View file

@ -1,31 +1,33 @@
# Template file for 'polybar'
pkgname=polybar
version=3.5.7
version=3.6.2
revision=1
build_style=cmake
configure_args="
-DENABLE_ALSA=$(vopt_if alsa ON OFF)
-DENABLE_CURL=$(vopt_if curl ON OFF)
-DENABLE_I3=$(vopt_if i3 ON OFF)
-DENABLE_MPD=$(vopt_if mpd ON OFF)
-DENABLE_NETWORK=$(vopt_if network ON OFF)
-DENABLE_PULSEAUDIO=$(vopt_if pulseaudio ON OFF)
-DWITH_XCOMPOSITE=ON"
hostmakedepends="pkg-config xcb-proto python3 python3-Sphinx"
configure_args="-DBUILD_CONFIG=OFF -DBUILD_DOC_HTML=OFF
$(vopt_bool alsa ENABLE_ALSA)
$(vopt_bool curl ENABLE_CURL)
$(vopt_bool i3 ENABLE_I3)
$(vopt_bool mpd ENABLE_MPD)
$(vopt_bool network ENABLE_NETWORK)
$(vopt_bool pulseaudio ENABLE_PULSEAUDIO)"
hostmakedepends="pkg-config xcb-proto python3 python3-Sphinx python3-packaging"
makedepends="cairo-devel xcb-util-image-devel xcb-util-wm-devel xcb-util-xrm-devel
zlib-devel xcb-util-renderutil-devel xcb-util-cursor-devel libxcb-devel
zlib-devel xcb-util-renderutil-devel xcb-util-cursor-devel libxcb-devel libuv-devel
$(vopt_if alsa "alsa-lib-devel")
$(vopt_if curl "libcurl-devel")
$(vopt_if i3 "i3-devel jsoncpp-devel")
$(vopt_if mpd "libmpdclient-devel")
$(vopt_if network "wireless_tools-devel")
$(vopt_if network "libnl3-devel")
$(vopt_if pulseaudio "pulseaudio-devel")"
short_desc="Fast and easy-to-use status bar"
maintainer="Michael Carlberg <c@rlberg.se>"
maintainer="classabbyamp <void@placeviolette.net>"
license="MIT"
homepage="https://github.com/polybar/polybar"
distfiles="${homepage}/releases/download/${version}/polybar-${version}.tar.gz"
checksum=73210e6d74217acb953b253990b4302343b7b6a7870fe1da9a1855daa44123db
changelog="https://raw.githubusercontent.com/polybar/polybar/master/CHANGELOG.md"
distfiles="https://github.com/polybar/polybar/releases/download/${version}/polybar-${version}.tar.gz"
checksum=73becc942e7d2418bc72bd194f2037a2a86792219fd561b663a8509fd5f547a0
# tries to download and build unstable/unreleased googletest during configure
make_check=no
build_options="alsa curl i3 mpd network pulseaudio"
build_options_default="$build_options"
@ -35,21 +37,13 @@ desc_option_i3="Enable support for i3"
desc_option_mpd="Enable support for MPD"
desc_option_network="Enable support for network"
CXXFLAGS="-Wno-error=deprecated-declarations"
if [ "$build_option_network" ]; then
case "$XBPS_TARGET_MACHINE" in
*-musl) CXXFLAGS+=" -D_LINUX_IF_ETHER_H" ;;
esac
fi
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
makedepends+=" libatomic-devel"
configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES='-latomic'"
fi
post_install() {
rm -rf ${DESTDIR}/usr/share/doc/polybar
vdoc config
rm -r ${DESTDIR}/usr/share/doc/polybar
vsconf doc/config.ini
vlicense LICENSE
}