29 lines
781 B
Plaintext
29 lines
781 B
Plaintext
# Description: User interface library focusing on simplicity and minimalism
|
|
# URL: https://pwmt.org/projects/girara
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libnotify
|
|
# Optional: json-glib libnotify
|
|
|
|
name=girara
|
|
version=0.4.4
|
|
release=1
|
|
source=(https://github.com/pwmt/girara/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
prt-get isinst json-glib && PKGMK_GIRARA+=' -D json=enabled' || PKGMK_GIRARA+=' -D json=disabled'
|
|
|
|
meson setup $name-$version build $PKGMK_GIRARA \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true \
|
|
-D docs=disabled \
|
|
-D tests=disabled
|
|
meson compile -C build
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -rf $PKG/usr/share/locale
|
|
}
|