2016-11-20 02:00:31 +00:00
|
|
|
# Maintainer: Michael Carlberg <c@rlberg.se>
|
|
|
|
# Contributor: Michael Carlberg <c@rlberg.se>
|
|
|
|
pkgname=polybar
|
2017-04-03 21:56:04 +00:00
|
|
|
pkgver=3.0.5
|
2017-09-09 20:39:41 +00:00
|
|
|
pkgrel=3
|
2016-11-20 02:00:31 +00:00
|
|
|
pkgdesc="A fast and easy-to-use status bar"
|
|
|
|
arch=("i686" "x86_64")
|
|
|
|
url="https://github.com/jaagr/polybar"
|
|
|
|
license=("MIT")
|
2017-01-24 10:14:51 +00:00
|
|
|
depends=("cairo" "xcb-util-image" "xcb-util-wm" "xcb-util-xrm")
|
2016-11-20 02:00:31 +00:00
|
|
|
optdepends=("alsa-lib: volume module support"
|
|
|
|
"libmpdclient: mpd module support"
|
|
|
|
"wireless_tools: network module support"
|
|
|
|
"jsoncpp: i3 module support"
|
2016-11-20 02:06:03 +00:00
|
|
|
"i3ipc-glib-git: i3 module support"
|
|
|
|
"ttf-unifont: Font used in example config"
|
2016-12-23 16:04:38 +00:00
|
|
|
"siji-git: Font used in example config"
|
|
|
|
"curl: github module support")
|
2017-09-09 20:39:41 +00:00
|
|
|
makedepends=("clang" "cmake" "git" "python" "python2" "pkg-config")
|
2017-01-27 03:15:41 +00:00
|
|
|
conflicts=("polybar-git")
|
2017-01-02 01:32:16 +00:00
|
|
|
install="${pkgname}.install"
|
2016-11-20 02:00:31 +00:00
|
|
|
source=("${pkgname}::git+${url}.git#tag=${pkgver}")
|
|
|
|
md5sums=("SKIP")
|
|
|
|
|
|
|
|
prepare() {
|
2017-01-27 03:15:41 +00:00
|
|
|
git -C "${pkgname}" submodule update --init --recursive
|
2017-09-09 20:39:41 +00:00
|
|
|
git -C "${pkgname}" cherry-pick d35abc7620c8f06618b4708d9a969dfa2f309e96
|
2017-01-27 03:15:41 +00:00
|
|
|
mkdir -p "${pkgname}/build"
|
2016-11-20 02:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2017-01-27 03:15:41 +00:00
|
|
|
cd "${pkgname}/build" || exit 1
|
2017-09-09 20:39:41 +00:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_C_COMPILER="clang" -DCMAKE_CXX_COMPILER="clang++" ..
|
2017-01-27 03:15:41 +00:00
|
|
|
cmake --build .
|
2016-11-20 02:00:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2017-01-27 03:15:41 +00:00
|
|
|
cmake --build "${pkgname}/build" --target install -- DESTDIR="${pkgdir}"
|
|
|
|
install -Dm644 "${pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
2016-11-20 02:00:31 +00:00
|
|
|
}
|