mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
While not strictly necessary, the new vala version introduces many fixes in the codegen and also fixes things like memory leaks
29 lines
992 B
Text
29 lines
992 B
Text
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=libchamplain
|
|
pkgver=0.12.20
|
|
pkgrel=3
|
|
pkgdesc="libchamplain is a C library providing a ClutterActor to display maps"
|
|
url="https://wiki.gnome.org/Projects/libchamplain"
|
|
arch="all"
|
|
license="LGPL-2.0-or-later"
|
|
makedepends="glib-dev gtk+3.0-dev clutter-dev cairo-dev sqlite-dev libsoup-dev
|
|
gobject-introspection-dev clutter-gtk-dev gtk-doc vala meson"
|
|
options="!check" # no tests
|
|
subpackages="$pkgname-dev"
|
|
source="https://download.gnome.org/sources/libchamplain/${pkgver%.*}/libchamplain-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
abuild-meson \
|
|
-Dvapi=true \
|
|
-Dintrospection=true \
|
|
-Dgtk_doc=true \
|
|
. output
|
|
meson compile ${JOBS:+-j ${JOBS}} -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="514e4bd2803ace0d87a95a318a03bc2f2ccc454129146d76590d1b1f5666c95a4fb7013e2ad0cfafc5844d7d8b732c81a44cd0e7d51c505adcfe55c55abb4f6f libchamplain-0.12.20.tar.xz"
|