polybar/contrib/lemonbuddy.aur/PKGBUILD

43 lines
1.1 KiB
Bash
Raw Normal View History

# Maintainer: Michael Carlberg <c@rlberg.se>
# Contributor: Michael Carlberg <c@rlberg.se>
pkgname=lemonbuddy
2016-10-25 14:40:57 +00:00
pkgver=2.1.1
pkgrel=1
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 05:42:22 +00:00
depends=("libxft" "xcb-util-wm")
optdepends=("alsa-lib: volume module support"
"libmpdclient: mpd module support"
"wireless_tools: network module support"
2016-05-31 01:50:58 +00:00
"i3ipc-glib-git: i3 module support")
2016-10-25 07:41:27 +00:00
makedepends=("cmake" "python2" "pkg-config" "clang35" "libc++" "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 06:58:11 +00:00
cmake \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
2016-10-25 07:41:27 +00:00
-DCMAKE_EXE_LINKER_FLAGS=-lc++ \
2016-10-25 06:58:11 +00:00
-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"
}