mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 17:16:44 +02:00
30 lines
842 B
Text
30 lines
842 B
Text
# Contributor: Alex Yam <alex@alexyam.com>
|
|
# Maintainer: Alex Yam <alex@alexyam.com>
|
|
pkgname=mm-common
|
|
pkgver=1.0.5
|
|
pkgrel=0
|
|
arch="noarch"
|
|
pkgdesc="Build infrastructure and utilities for GNOME C++ binding libraries"
|
|
options="!check" # No test suite
|
|
url="https://gitlab.gnome.org/GNOME/mm-common"
|
|
license="GPL-2.0-or-later"
|
|
depends="
|
|
gtkmm3-dev
|
|
glibmm-dev
|
|
"
|
|
makedepends="meson"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver-2.tar.xz::https://download.gnome.org/sources/mm-common/${pkgver%.*}/mm-common-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
abuild-meson -Db_lto=true . output
|
|
meson compile -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="
|
|
bf681b4d63d5bf531a9315b0c8841e3815af276828d1828a3eb04dcb805cbbfbaac182f79f5e48688a7eef8666975b9079144e320093e4ee3addff48813e61ad mm-common-1.0.5-2.tar.xz
|
|
"
|