2019-11-01 06:20:36 -04:00
|
|
|
# Maintainer: Patrick Ziegler <p.ziegler96@gmail.com>
|
2016-11-19 21:00:31 -05:00
|
|
|
pkgname=polybar
|
2021-01-07 08:52:01 -05:00
|
|
|
pkgver=3.5.4
|
2019-10-30 09:07:34 -04:00
|
|
|
pkgrel=1
|
2016-11-19 21:00:31 -05:00
|
|
|
pkgdesc="A fast and easy-to-use status bar"
|
|
|
|
arch=("i686" "x86_64")
|
2019-05-06 07:51:49 -04:00
|
|
|
url="https://github.com/polybar/polybar"
|
2016-11-19 21:00:31 -05:00
|
|
|
license=("MIT")
|
2019-07-18 10:24:15 -04:00
|
|
|
depends=("cairo" "xcb-util-image" "xcb-util-wm" "xcb-util-xrm" "xcb-util-cursor"
|
2019-07-30 13:40:55 -04:00
|
|
|
"alsa-lib" "libpulse" "libmpdclient" "libnl" "jsoncpp" "curl")
|
2019-07-18 10:24:15 -04:00
|
|
|
optdepends=("i3-wm: i3 module support"
|
2016-11-19 21:06:03 -05:00
|
|
|
"ttf-unifont: Font used in example config"
|
2016-12-23 11:04:38 -05:00
|
|
|
"siji-git: Font used in example config"
|
2019-07-18 10:24:15 -04:00
|
|
|
"xorg-fonts-misc: Font used in example config")
|
2020-12-23 11:56:48 -05:00
|
|
|
makedepends=("cmake" "python" "pkg-config" "python-sphinx" "i3-wm")
|
2017-01-26 22:15:41 -05:00
|
|
|
conflicts=("polybar-git")
|
2017-01-01 20:32:16 -05:00
|
|
|
install="${pkgname}.install"
|
2020-12-12 07:35:35 -05:00
|
|
|
source=(${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz)
|
2021-01-07 08:52:01 -05:00
|
|
|
sha256sums=('133af4e8b29f426595ad3b773948eee27275230887844473853e7940c7959c2b')
|
2020-12-12 07:35:35 -05:00
|
|
|
_dir="${pkgname}-${pkgver}"
|
2016-11-19 21:00:31 -05:00
|
|
|
|
|
|
|
prepare() {
|
2020-12-12 07:35:35 -05:00
|
|
|
mkdir -p "${_dir}/build"
|
2016-11-19 21:00:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2020-12-12 07:35:35 -05:00
|
|
|
cd "${_dir}/build" || exit 1
|
2020-12-02 16:00:15 -05:00
|
|
|
# Force cmake to use system python (to detect xcbgen)
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=/usr/bin/python3 ..
|
2017-01-26 22:15:41 -05:00
|
|
|
cmake --build .
|
2016-11-19 21:00:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2020-12-12 07:35:35 -05:00
|
|
|
cmake --build "${_dir}/build" --target install -- DESTDIR="${pkgdir}"
|
|
|
|
install -Dm644 "${_dir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
2016-11-19 21:00:31 -05:00
|
|
|
}
|