2016-05-24 09:10:30 -04:00
|
|
|
# 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
|
2016-05-24 09:10:30 -04:00
|
|
|
pkgdesc="A fast and easy-to-use tool for Lemonbar"
|
|
|
|
arch=("i686" "x86_64")
|
|
|
|
url="https://github.com/jaagr/lemonbuddy"
|
|
|
|
license=("MIT")
|
2016-11-04 15:29:37 -04:00
|
|
|
depends=("libxft" "xcb-util-wm" "xcb-util-image")
|
2016-05-24 09:10:30 -04:00
|
|
|
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")
|
2016-05-24 09:10:30 -04:00
|
|
|
conflicts=("lemonbuddy-git")
|
2016-10-18 19:59:32 -04:00
|
|
|
source=("${pkgname}::git+${url}.git#tag=${pkgver}")
|
2016-05-24 09:10:30 -04:00
|
|
|
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 ..
|
2016-05-24 09:10:30 -04:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${pkgname}/build" || exit
|
|
|
|
make DESTDIR="${pkgdir}/" install
|
|
|
|
cd .. || exit
|
|
|
|
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
|
|
}
|