polybar/contrib/polybar.aur/PKGBUILD

39 lines
1.5 KiB
Bash
Raw Normal View History

2019-11-01 10:20:36 +00:00
# Maintainer: Patrick Ziegler <p.ziegler96@gmail.com>
2016-11-20 02:00:31 +00:00
pkgname=polybar
2021-03-01 20:49:26 +00:00
pkgver=3.5.5
pkgrel=2
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/polybar/polybar"
2016-11-20 02:00:31 +00:00
license=("MIT")
depends=("cairo" "xcb-util-image" "xcb-util-wm" "xcb-util-xrm" "xcb-util-cursor"
"alsa-lib" "libpulse" "libmpdclient" "libnl" "jsoncpp" "curl")
optdepends=("i3-wm: 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"
"xorg-fonts-misc: Font used in example config")
makedepends=("cmake" "python" "pkg-config" "python-sphinx" "python-packaging" "i3-wm")
2017-01-27 03:15:41 +00:00
conflicts=("polybar-git")
2017-01-02 01:32:16 +00:00
install="${pkgname}.install"
2020-12-12 12:35:35 +00:00
source=(${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz)
2021-03-01 20:49:26 +00:00
sha256sums=('7e625d3b6f7885587e70200fd81c2a5d3fb03f5649422de8e138747152ca0bb1')
2020-12-12 12:35:35 +00:00
_dir="${pkgname}-${pkgver}"
2016-11-20 02:00:31 +00:00
prepare() {
2020-12-12 12:35:35 +00:00
mkdir -p "${_dir}/build"
2016-11-20 02:00:31 +00:00
}
build() {
2020-12-12 12:35:35 +00:00
cd "${_dir}/build" || exit 1
# Force cmake to use system python (to detect xcbgen)
# We need to turn off _GLIBCXX_ASSERTIONS because of a bug in polybar:
# https://github.com/polybar/polybar/issues/2416
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="-U_GLIBCXX_ASSERTIONS" -DPYTHON_EXECUTABLE=/usr/bin/python3 ..
2017-01-27 03:15:41 +00:00
cmake --build .
2016-11-20 02:00:31 +00:00
}
package() {
2020-12-12 12:35:35 +00:00
cmake --build "${_dir}/build" --target install -- DESTDIR="${pkgdir}"
install -Dm644 "${_dir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
2016-11-20 02:00:31 +00:00
}