polybar-dwm/contrib/polybar-git.aur/PKGBUILD

49 lines
1.4 KiB
Text
Raw Normal View History

2016-11-20 03:00:31 +01:00
# Maintainer: Michael Carlberg <c@rlberg.se>
# Contributor: Michael Carlberg <c@rlberg.se>
_pkgname=polybar
pkgname="${_pkgname}-git"
2017-04-03 23:56:04 +02:00
pkgver=3.0.5
2017-09-11 20:26:00 -07:00
pkgrel=4
2016-11-20 03:00:31 +01:00
pkgdesc="A fast and easy-to-use status bar"
arch=("i686" "x86_64")
url="https://github.com/jaagr/polybar"
license=("MIT")
2017-09-11 20:26:00 -07:00
depends=("cairo" "xcb-util-image" "xcb-util-wm" "xcb-util-xrm" "xcb-util-cursor")
2016-11-20 03:00:31 +01:00
optdepends=("alsa-lib: volume module support"
"libmpdclient: mpd module support"
"wireless_tools: network module support"
"jsoncpp: i3 module support"
"i3ipc-glib-git: i3 module support"
"ttf-unifont: Font used in example config"
2016-12-23 17:04:38 +01:00
"siji-git: Font used in example config"
"curl: github module support")
2017-01-26 02:37:58 +01:00
makedepends=("cmake" "git" "python" "python2" "pkg-config")
2016-11-20 03:00:31 +01:00
provides=("polybar")
2017-01-27 04:15:41 +01:00
conflicts=("polybar")
2017-01-02 02:32:16 +01:00
install="${_pkgname}.install"
2016-11-20 03:00:31 +01:00
source=("${_pkgname}::git+${url}.git")
md5sums=("SKIP")
pkgver() {
2017-01-27 04:15:41 +01:00
git -C "${_pkgname}" describe --long --tags | sed "s/-/.r/;s/-/./g"
2016-11-20 03:00:31 +01:00
}
prepare() {
2017-01-27 04:15:41 +01:00
git -C "${_pkgname}" submodule update --init --recursive
mkdir -p "${_pkgname}/build"
2016-11-20 03:00:31 +01:00
}
build() {
2017-01-27 04:15:41 +01:00
cd "${_pkgname}/build" || exit 1
if [ -x ../common/version.sh ]; then
../common/version.sh
fi
2016-12-23 17:04:38 +01:00
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
2017-01-27 04:15:41 +01:00
cmake --build .
2016-11-20 03:00:31 +01:00
}
package() {
2017-01-27 04:15:41 +01:00
cmake --build "${_pkgname}/build" --target install -- DESTDIR="${pkgdir}"
install -Dm644 "${_pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
2016-11-20 03:00:31 +01:00
}