diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2020-02-16 12:06:47 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-17 13:54:48 -0300 |
commit | 15e2bb16389c6472a7c55db109c3e0d1d0c50190 (patch) | |
tree | 5721a7133fc0fcfb96645230588da167a1613fc8 | |
parent | 931630d30233325f1793900a25c849736cc4ff29 (diff) | |
download | aports-15e2bb16389c6472a7c55db109c3e0d1d0c50190.tar.bz2 aports-15e2bb16389c6472a7c55db109c3e0d1d0c50190.tar.xz |
community/libxmlb: fix buildtype, add -dbg subpkg
-rw-r--r-- | community/libxmlb/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/community/libxmlb/APKBUILD b/community/libxmlb/APKBUILD index 98d04b2ee1..98a483ed2b 100644 --- a/community/libxmlb/APKBUILD +++ b/community/libxmlb/APKBUILD @@ -2,19 +2,20 @@ # Maintainer: Leo <thinkabit.ukim@gmail.com> pkgname=libxmlb pkgver=0.1.14 -pkgrel=0 +pkgrel=1 pkgdesc="Library to help create and query binary XML blobs" url="https://github.com/hughsie/libxmlb" arch="all" license="LGPL-2.1-or-later" makedepends="meson glib-dev gobject-introspection-dev" checkdepends="shared-mime-info" -subpackages="$pkgname-dev:_dev" +subpackages="$pkgname-dev:_dev $pkgname-dbg" source="$pkgname-$pkgver.tar.gz::https://github.com/hughsie/libxmlb/archive/$pkgver.tar.gz" build() { meson \ --prefix=/usr \ + --buildtype=debugoptimized \ -Dgtkdoc=false \ -Dtests=true \ -Dstemmer=false \ |