mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
47 lines
1.2 KiB
Bash
47 lines
1.2 KiB
Bash
# Maintainer: Michael Carlberg <c@rlberg.se>
|
|
# Contributor: Michael Carlberg <c@rlberg.se>
|
|
_pkgname=lemonbuddy
|
|
pkgname="${_pkgname}-git"
|
|
pkgver=2.1.12
|
|
pkgrel=1
|
|
pkgdesc="A fast and easy-to-use tool for Lemonbar"
|
|
arch=("i686" "x86_64")
|
|
url="https://github.com/jaagr/lemonbuddy"
|
|
license=("MIT")
|
|
depends=("libxft" "xcb-util-wm")
|
|
optdepends=("alsa-lib: volume module support"
|
|
"libmpdclient: mpd module support"
|
|
"wireless_tools: network module support"
|
|
"jsoncpp: i3 module support"
|
|
"i3ipc-glib-git: i3 module support")
|
|
makedepends=("cmake" "python2" "pkg-config" "boost")
|
|
provides=("lemonbuddy")
|
|
conflicts=("lemonbuddy")
|
|
source=("${_pkgname}::git+${url}.git")
|
|
md5sums=("SKIP")
|
|
|
|
pkgver() {
|
|
cd "$_pkgname" || exit
|
|
git describe --long --tags | sed "s/-/.r/;s/-/./g"
|
|
}
|
|
|
|
prepare() {
|
|
cd "$_pkgname" || exit
|
|
git submodule update --init --recursive
|
|
mkdir build
|
|
}
|
|
|
|
build() {
|
|
cd "${_pkgname}" || exit
|
|
[ -x version.sh ] && ./version.sh >/dev/null
|
|
cd build || exit
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${_pkgname}/build" || exit
|
|
make DESTDIR="$pkgdir/" install
|
|
cd .. || exit
|
|
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
|
|
}
|