1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00
polybar/contrib/polybar.aur/PKGBUILD

37 lines
1.3 KiB
Text
Raw Normal View History

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")
url="https://github.com/polybar/polybar"
2016-11-19 21:00:31 -05: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 11:04:38 -05:00
"siji-git: Font used in example config"
"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
# 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
}