mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
36 lines
1.3 KiB
Bash
36 lines
1.3 KiB
Bash
# Maintainer: Patrick Ziegler <p.ziegler96@gmail.com>
|
|
pkgname=polybar
|
|
pkgver=3.5.7
|
|
pkgrel=1
|
|
pkgdesc="A fast and easy-to-use status bar"
|
|
arch=("i686" "x86_64")
|
|
url="https://github.com/polybar/polybar"
|
|
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"
|
|
"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")
|
|
conflicts=("polybar-git")
|
|
install="${pkgname}.install"
|
|
source=(${url}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz)
|
|
sha256sums=('73210e6d74217acb953b253990b4302343b7b6a7870fe1da9a1855daa44123db')
|
|
_dir="${pkgname}-${pkgver}"
|
|
|
|
prepare() {
|
|
mkdir -p "${_dir}/build"
|
|
}
|
|
|
|
build() {
|
|
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 ..
|
|
cmake --build .
|
|
}
|
|
|
|
package() {
|
|
cmake --build "${_dir}/build" --target install -- DESTDIR="${pkgdir}"
|
|
install -Dm644 "${_dir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|