2019-03-05 14:46:07 +11:00
|
|
|
# Description: A gobject-based plugin engine.
|
|
|
|
# URL: https://wiki.gnome.org/Projects/Libpeas
|
2023-08-28 14:19:20 -05:00
|
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
2020-05-31 18:47:25 +10:00
|
|
|
# Depends on: gtk3 python3-gobject vala
|
2019-03-05 14:46:07 +11:00
|
|
|
|
|
|
|
name=libpeas
|
2023-04-01 16:00:05 +02:00
|
|
|
version=1.36.0
|
2019-03-05 14:46:07 +11:00
|
|
|
release=1
|
|
|
|
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
2023-08-13 10:52:35 +02:00
|
|
|
meson setup build $name-$version \
|
|
|
|
--prefix=/usr \
|
|
|
|
--buildtype=plain \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true
|
|
|
|
meson compile -C build -j ${JOBS:-1}
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2019-03-05 14:46:07 +11:00
|
|
|
|
2023-08-13 10:52:35 +02:00
|
|
|
rm -r $PKG/usr/share/locale
|
2019-03-05 14:46:07 +11:00
|
|
|
}
|