2016-11-19 21:00:31 -05:00
|
|
|
# Maintainer: Michael Carlberg <c@rlberg.se>
|
|
|
|
# Contributor: Michael Carlberg <c@rlberg.se>
|
|
|
|
_pkgname=polybar
|
|
|
|
pkgname="${_pkgname}-git"
|
2016-12-30 16:09:49 -05:00
|
|
|
pkgver=2.4.4
|
2016-11-19 21:00:31 -05:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A fast and easy-to-use status bar"
|
|
|
|
arch=("i686" "x86_64")
|
|
|
|
url="https://github.com/jaagr/polybar"
|
|
|
|
license=("MIT")
|
|
|
|
depends=("libxft" "xcb-util-wm" "xcb-util-image")
|
|
|
|
optdepends=("alsa-lib: volume module support"
|
|
|
|
"libmpdclient: mpd module support"
|
|
|
|
"wireless_tools: network module support"
|
|
|
|
"jsoncpp: i3 module support"
|
2016-11-19 21:06:03 -05:00
|
|
|
"i3ipc-glib-git: i3 module support"
|
|
|
|
"ttf-unifont: Font used in example config"
|
2016-12-23 11:04:38 -05:00
|
|
|
"siji-git: Font used in example config"
|
|
|
|
"curl: github module support")
|
|
|
|
makedepends=("cmake" "python" "python2" "pkg-config")
|
2016-11-19 21:00:31 -05:00
|
|
|
provides=("polybar")
|
|
|
|
conflicts=("polybar" "lemonbuddy-git" "lemonbuddy")
|
|
|
|
source=("${_pkgname}::git+${url}.git")
|
|
|
|
md5sums=("SKIP")
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd "$_pkgname" || exit
|
|
|
|
git describe --long --tags | sed "s/-/.r/;s/-/./g"
|
|
|
|
}
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "$_pkgname" || exit
|
|
|
|
git submodule update --init --recursive
|
|
|
|
mkdir build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${_pkgname}" || exit
|
|
|
|
[ -x version.sh ] && ./version.sh >/dev/null
|
|
|
|
cd build || exit
|
2016-12-23 11:04:38 -05:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
2016-11-19 21:00:31 -05:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${_pkgname}/build" || exit
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
cd .. || exit
|
|
|
|
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
|
|
|
|
}
|