1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-03 04:33:30 -05:00
polybar/contrib/lemonbuddy.aur/PKGBUILD

39 lines
1.1 KiB
Text
Raw Normal View History

# Maintainer: Michael Carlberg <c@rlberg.se>
# Contributor: Michael Carlberg <c@rlberg.se>
pkgname=lemonbuddy
2016-11-12 07:55:06 -05:00
pkgver=2.2.5
2016-10-25 10:40:57 -04:00
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" "xcb-util-image")
optdepends=("alsa-lib: volume module support"
"libmpdclient: mpd module support"
"wireless_tools: network module support"
2016-10-29 06:42:33 -04:00
"jsoncpp: i3 module support"
2016-05-30 21:50:58 -04:00
"i3ipc-glib-git: i3 module support")
2016-10-25 15:07:58 -04:00
makedepends=("cmake" "python2" "pkg-config" "boost")
conflicts=("lemonbuddy-git")
source=("${pkgname}::git+${url}.git#tag=${pkgver}")
md5sums=("SKIP")
prepare() {
cd "$pkgname" || exit
git submodule update --init --recursive
mkdir build
}
build() {
cd "${pkgname}/build" || exit
2016-10-25 15:07:58 -04:00
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"
}