2016-05-24 09:10:30 -04:00
|
|
|
# Maintainer: Michael Carlberg <c@rlberg.se>
|
|
|
|
# Contributor: Michael Carlberg <c@rlberg.se>
|
|
|
|
pkgname=lemonbuddy
|
2016-10-25 02:58:11 -04:00
|
|
|
pkgver=2.1.0
|
2016-10-25 03:41:27 -04:00
|
|
|
pkgrel=5
|
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-05-30 21:50:58 -04:00
|
|
|
"i3ipc-glib-git: i3 module support")
|
2016-10-25 03:41:27 -04:00
|
|
|
makedepends=("cmake" "python2" "pkg-config" "clang35" "libc++" "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 02:58:11 -04:00
|
|
|
cmake \
|
|
|
|
-DCMAKE_C_COMPILER=clang \
|
|
|
|
-DCMAKE_CXX_COMPILER=clang++ \
|
2016-10-25 03:41:27 -04:00
|
|
|
-DCMAKE_EXE_LINKER_FLAGS=-lc++ \
|
2016-10-25 02:58:11 -04:00
|
|
|
-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"
|
|
|
|
}
|