diff options
author | Tim Biermann <tbier@posteo.de> | 2020-11-03 17:25:58 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-11-03 17:25:58 +0000 |
commit | 1cc9e8310f1dbea66c99f0307438282f8486298e (patch) | |
tree | 84753e5cb8ef885652ecbf411d03e8ad372c934e /appstream-glib | |
parent | d74defb3103788ce0bfc59f0b6426af625981d27 (diff) | |
download | contrib-1cc9e8310f1dbea66c99f0307438282f8486298e.tar.gz contrib-1cc9e8310f1dbea66c99f0307438282f8486298e.tar.xz |
appstream-glib: updated meson syntax
Diffstat (limited to 'appstream-glib')
-rw-r--r-- | appstream-glib/.signature | 4 | ||||
-rw-r--r-- | appstream-glib/Pkgfile | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/appstream-glib/.signature b/appstream-glib/.signature index be50ff50e..74d9c56dd 100644 --- a/appstream-glib/.signature +++ b/appstream-glib/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF35lDi85tbRzAPuojqoLviiexuv0jzDiu/621p9igeT6xXEH+phP4LmhY0B1MSLUR0qpn5NLOHzgGRBlKDNa1bwY= -SHA256 (Pkgfile) = c38fdab02d07d7c84ed52eff4350760f5b356fd8c9d62a5e62eacb93c1474865 +RWSagIOpLGJF3z2/rdup4WVvgyLFZ58ALUU0RN714RRQwwXuraMJ1UDrHThYl3Ut0uP0QTXNXuF4+0U5UfHJnPhAni8xJeE3rgc= +SHA256 (Pkgfile) = 1423708c125ceedd62a3d1f3fcfc25b446c5cf5227140d3a94b58fe8538f046b SHA256 (.footprint) = 7ff0e10838a5c518492d14ef9e24a24ba1be196a3de208f547d798b1e1fc76f9 SHA256 (appstream-glib-0.7.18.tar.xz) = ca1ed22e3bde3912cb903aaa7de085d55771da454f1c0573fd9608e1de9c4002 diff --git a/appstream-glib/Pkgfile b/appstream-glib/Pkgfile index 64422cba7..0b08c12fb 100644 --- a/appstream-glib/Pkgfile +++ b/appstream-glib/Pkgfile @@ -11,11 +11,13 @@ source=(https://people.freedesktop.org/~hughsient/appstream-glib/releases/$name- build() { [[ -f /usr/lib/libstemmer.so ]] && PKGMK_APPSTREAM_GLIB=' -Dstemmer=true' || PKGMK_APPSTREAM_GLIB=' -Dstemmer=false' - meson $name-$version build $PKGMK_APPSTREAM_GLIB \ + meson setup $name-$version build $PKGMK_APPSTREAM_GLIB \ -Dprefix=/usr \ + -Dbuildtype=plain \ + -Db_ndebug=true \ -Drpm=false \ -Dgtk-doc=false - ninja -C build - DESTDIR=$PKG ninja -C build install + meson compile -C build + DESTDIR=$PKG meson install -C build rm -fr $PKG/usr/share/locale } |