contrib/libpeas/Pkgfile

23 lines
579 B
Plaintext
Raw Normal View History

2019-03-05 04:46:07 +01:00
# Description: A gobject-based plugin engine.
# URL: https://wiki.gnome.org/Projects/Libpeas
2023-08-28 21:19:20 +02:00
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: gtk3 python3-gobject vala
2019-03-05 04:46:07 +01:00
name=libpeas
2023-04-01 16:00:05 +02:00
version=1.36.0
2019-03-05 04:46:07 +01: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 04:46:07 +01:00
2023-08-13 10:52:35 +02:00
rm -r $PKG/usr/share/locale
2019-03-05 04:46:07 +01:00
}