yambar/PKGBUILD.wayland-only
2019-09-24 19:56:09 +02:00

33 lines
768 B
Text

pkgname=f00bar-wayland
pkgver=1.1.0
pkgrel=1
pkgdesc="Simplistic and highly configurable status panel for Wayland"
arch=('x86_64')
url=https://gitlab.com/dnkl/f00bar
license=(mit)
conflicts=('f00bar')
provides=('f00bar')
makedepends=('meson' 'ninja' 'scdoc')
depends=(
'wayland' 'wlroots'
'freetype2' 'fontconfig' 'pixman'
'libyaml'
'alsa-lib'
'libudev.so'
'json-c'
'libmpdclient')
source=()
pkgver() {
[ -d ../.git ] && git describe --tags --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
[ ! -d ../.git ] && head -3 ../meson.build | grep version | cut -d "'" -f 2
}
build() {
meson --buildtype=release --prefix=/usr -Db_lto=true -Dbackend-x11=disabled -Dbackend-wayland=enabled ../
ninja
}
package() {
DESTDIR="${pkgdir}/" ninja install
}