mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
14a948d75d
This is already the default but our packaging guidelines recommend this, so we should also follow them.
42 lines
1.4 KiB
Bash
42 lines
1.4 KiB
Bash
# Maintainer: Patrick Ziegler <p.ziegler96@gmail.com>
|
|
_pkgname=polybar
|
|
pkgname="${_pkgname}-git"
|
|
pkgver=3.4.0
|
|
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" "git" "python" "pkg-config" "python-sphinx" "i3-wm")
|
|
provides=("polybar")
|
|
conflicts=("polybar")
|
|
install="${_pkgname}.install"
|
|
source=("${_pkgname}::git+${url}.git")
|
|
md5sums=("SKIP")
|
|
|
|
pkgver() {
|
|
git -C "${_pkgname}" describe --long --tags | sed "s/-/.r/;s/-/./g"
|
|
}
|
|
|
|
prepare() {
|
|
git -C "${_pkgname}" submodule update --init --recursive
|
|
mkdir -p "${_pkgname}/build"
|
|
}
|
|
|
|
build() {
|
|
cd "${_pkgname}/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 "${_pkgname}/build" --target install -- DESTDIR="${pkgdir}"
|
|
install -Dm644 "${_pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
|
|
}
|