20 lines
529 B
Plaintext
20 lines
529 B
Plaintext
|
# Description: libportal provides GIO-style async APIs for most Flatpak portals.
|
||
|
# URL: https://github.com/flatpak/libportal
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: glib
|
||
|
|
||
|
name=libportal
|
||
|
version=0.4
|
||
|
release=1
|
||
|
source=(https://github.com/flatpak/libportal/releases/download/$version/$name-$version.tar.xz)
|
||
|
|
||
|
build() {
|
||
|
meson setup $name-$version build \
|
||
|
--prefix=/usr \
|
||
|
--buildtype=plain \
|
||
|
-D gtk_doc=false \
|
||
|
-D b_ndebug=true
|
||
|
meson compile -C build
|
||
|
DESTDIR=$PKG meson install -C build
|
||
|
}
|