2016-05-24 09:10:30 -04:00
|
|
|
# Maintainer: Michael Carlberg <c@rlberg.se>
|
|
|
|
# Contributor: Michael Carlberg <c@rlberg.se>
|
|
|
|
_pkgname=lemonbuddy
|
|
|
|
pkgname="${_pkgname}-git"
|
2016-10-12 01:42:22 -04:00
|
|
|
pkgver=2.0.0.rbeta.0.g593e5af
|
2016-10-12 13:14:11 -04:00
|
|
|
pkgrel=2
|
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-10-12 01:42:22 -04:00
|
|
|
depends=("libxft" "xcb-util-wm")
|
2016-05-24 09:10:30 -04:00
|
|
|
optdepends=("alsa-lib: volume module support"
|
|
|
|
"libmpdclient: mpd module support"
|
|
|
|
"wireless_tools: network module support"
|
2016-06-28 15:55:37 -04:00
|
|
|
"jsoncpp: i3 module support"
|
2016-05-30 21:50:58 -04:00
|
|
|
"i3ipc-glib-git: i3 module support")
|
2016-10-12 13:14:11 -04:00
|
|
|
makedepends=("cmake" "python2" "pkg-config" "clang" "glibc" "boost")
|
2016-05-24 09:10:30 -04:00
|
|
|
provides=("lemonbuddy")
|
|
|
|
conflicts=("lemonbuddy")
|
|
|
|
source=("${_pkgname}::git+${url}.git")
|
|
|
|
md5sums=("SKIP")
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd "$_pkgname" || exit
|
2016-10-12 01:42:22 -04:00
|
|
|
git describe --long --tags | sed "s/-/.r/;s/-/./g"
|
2016-05-24 09:10:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "$_pkgname" || exit
|
|
|
|
git submodule update --init --recursive
|
|
|
|
mkdir build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${_pkgname}/build" || exit
|
|
|
|
cmake -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"
|
|
|
|
}
|