contrib: Remove void package

This commit is contained in:
NBonaparte 2018-01-08 11:03:38 -08:00 committed by Patrick Ziegler
parent d8414c6ec5
commit 7c41719da5
3 changed files with 0 additions and 83 deletions

View File

@ -1,9 +0,0 @@
Get started with the example configuration:
$ install -Dm644 /usr/share/doc/polybar/config $HOME/.config/polybar/config
$ polybar example
For more information, see https://github.com/jaagr/polybar

View File

@ -1,17 +0,0 @@
Fix poll.h warning on musl
--- include/adapters/alsa.hpp.orig
+++ include/adapters/alsa.hpp
@@ -4,7 +4,12 @@
#include <functional>
#include <string>
+#include <poll.h>
+
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-W#warnings"
#include <alsa/asoundlib.h>
+#pragma clang diagnostic pop
#include "common.hpp"
#include "config.hpp"

View File

@ -1,57 +0,0 @@
# Template file for 'polybar'
pkgname=polybar
version=3.0.4
revision=1
_i3ipcpp_version=0.6.2
_xpp_version=1.3.6
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)"
depends="cairo xcb-util-wm xcb-util-image xcb-util-xrm"
hostmakedepends="pkg-config xcb-proto"
makedepends="cairo-devel xcb-util-image-devel xcb-util-wm-devel xcb-util-xrm-devel zlib-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")"
short_desc="A fast and easy-to-use status bar"
maintainer="Michael Carlberg <c@rlberg.se>"
license="MIT"
homepage="https://github.com/jaagr/polybar"
distfiles="
https://github.com/jaagr/polybar/archive/${version}.tar.gz
https://github.com/jaagr/xpp/archive/${_xpp_version}.tar.gz
$(vopt_if i3 https://github.com/jaagr/i3ipcpp/archive/v${_i3ipcpp_version}.tar.gz)"
checksum="
a6a25a5305b7357b11769de6c0f5bf3175d7c65f1c80615779e75cb22aa6892c
b81993893190bf7ba19529e0da6e8b069e13e833f6a62874830b46785bee3349
$(vopt_if i3 7ad9c0c1e1cb9dfd07ecc2a7769eae9ac962c22db2e07be08b2186b7fd85189d)"
build_options="alsa curl i3 mpd network"
build_options_default="$build_options"
if [ "$build_option_network" -a "$XBPS_TARGET_MACHINE" = "aarch64-musl" ]; then
CXXFLAGS+=" -D_LINUX_IF_ETHER_H"
fi
if [ "$CROSS_BUILD" ]; then
configure_args+=" -DTHREADS_PTHREAD_ARG=OFF"
fi
post_extract() {
if [ -d ../i3ipcpp-${_i3ipcpp_version} ]; then
mv -f -T ../i3ipcpp-${_i3ipcpp_version} lib/i3ipcpp
fi
if [ -d ../xpp-${_xpp_version} ]; then
mv -f -T ../xpp-${_xpp_version} lib/xpp
fi
}
post_install() {
vlicense LICENSE
}