libpeas: updated meson syntax

This commit is contained in:
Tim Biermann 2020-11-07 16:31:46 +00:00
parent 434b3b9e73
commit 5713b9d529
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3xXtckCq1IIlbN9yw7tfhJVU3Asv9eKUohM8qF+aI6Pu2zel9BPizxK5anDoUcaSFIv5D3NFD0iMMBZQ9/gE/g8=
SHA256 (Pkgfile) = 5423164cb1578b6dc4cadc6b125f8b2d9dd1e7260f870cef110c83c27323f1ca
RWSagIOpLGJF3+dc2owAMsdYnqx7DQ3WGzq6/oLWeOgscotGphX/ZWguxhn9x9YBUVFkTZ97tjoCz0/Xb8gZIHKrd+yzA+wBEw0=
SHA256 (Pkgfile) = ec6cdb3ebee14c70e916f4b5d44432dc8b29d4dae0c656b3374acc1e580b451d
SHA256 (.footprint) = b1bc522958286571edfc33aa2bf81867c098f4436a9d539d57e165cab9a731f8
SHA256 (libpeas-1.28.0.tar.xz) = 42d91993b46ed50f16add6d9577ecc22beb8e2dffa7101e2232c2b63733b8b15

View File

@ -9,9 +9,12 @@ release=1
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
build() {
meson build $name-$version --prefix=/usr
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
meson build $name-$version \
--prefix=/usr \
--buildtype=plain \
-Db_ndebug=true
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
rm -r $PKG/usr/share/locale
}