Date: Friday, March 15, 2019 @ 21:23:49 Author: heftig Revision: 442053
archrelease: copy trunk to community-x86_64 Added: libxmlb/repos/community-x86_64/PKGBUILD (from rev 442052, libxmlb/trunk/PKGBUILD) Deleted: libxmlb/repos/community-x86_64/PKGBUILD ----------+ PKGBUILD | 63 +++++++++++++++++++++++++++++++------------------------------ 1 file changed, 33 insertions(+), 30 deletions(-) Deleted: PKGBUILD =================================================================== --- PKGBUILD 2019-03-15 21:22:33 UTC (rev 442052) +++ PKGBUILD 2019-03-15 21:23:49 UTC (rev 442053) @@ -1,30 +0,0 @@ -# Maintainer: Bruno Pagani <archa...@archlinux.org> - -pkgname=libxmlb -pkgver=0.1.7 -pkgrel=1 -pkgdesc="A library to help create and query binary XML blobs" -arch=('x86_64') -url="https://github.com/hughsie/libxmlb" -license=('LGPL') -depends=('glib2' 'libstemmer') -makedepends=('meson' 'gobject-introspection' 'gtk-doc') -checkdepends=('shared-mime-info') -source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc}) -sha256sums=('616cdc448db2a213e0298b8c4d0a0eb3056bc927fba364c107a9f0d3c8cd364b' 'SKIP') -validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes <rich...@hughsie.com> - -build() { - cd ${pkgname}-${pkgver} - arch-meson ../build - ninja -v -C ../build -} - -check() { - cd build - meson test -} - -package() { - DESTDIR="${pkgdir}" ninja -C build install -} Copied: libxmlb/repos/community-x86_64/PKGBUILD (from rev 442052, libxmlb/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2019-03-15 21:23:49 UTC (rev 442053) @@ -0,0 +1,33 @@ +# Maintainer: Bruno Pagani <archa...@archlinux.org> + +pkgname=libxmlb +pkgver=0.1.7 +pkgrel=2 +pkgdesc="A library to help create and query binary XML blobs" +arch=('x86_64') +url="https://github.com/hughsie/libxmlb" +license=('LGPL') +depends=('glib2' 'libstemmer') +makedepends=('meson' 'gobject-introspection' 'gtk-doc') +checkdepends=('shared-mime-info') +source=("https://people.freedesktop.org/~hughsient/releases/${pkgname}-${pkgver}.tar.xz"{,.asc}) +sha256sums=('616cdc448db2a213e0298b8c4d0a0eb3056bc927fba364c107a9f0d3c8cd364b' + 'SKIP') +validpgpkeys=('163EB50119225DB3DF8F49EA17ACBA8DFA970E17') # Richard Hughes <rich...@hughsie.com> + +prepare() { + cd ${pkgname}-${pkgver} +} + +build() { + arch-meson ${pkgname}-${pkgver} build -D stemmer=true + ninja -v -C build +} + +check() { + meson test -C build --print-errorlogs +} + +package() { + DESTDIR="${pkgdir}" meson install -C build +}