polybar/contrib/polybar.aur/PKGBUILD

37 lines
1.3 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-09-21 16:32:42 +00:00
pkgver=3.5.7
pkgrel=1
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-09-21 16:32:42 +00:00
sha256sums=('73210e6d74217acb953b253990b4302343b7b6a7870fe1da9a1855daa44123db')
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)
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -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
}