mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
30 lines
806 B
Text
30 lines
806 B
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer:
|
|
pkgname=libsigc++3
|
|
pkgver=3.0.7
|
|
pkgrel=0
|
|
pkgdesc="Typesafe callback system for standard C++"
|
|
url="https://github.com/libsigcplusplus/libsigcplusplus"
|
|
arch="all"
|
|
license="LGPL-3.0-or-later"
|
|
makedepends="boost-dev meson perl"
|
|
subpackages="$pkgname-dev"
|
|
source="https://download.gnome.org/sources/libsigc++/${pkgver%.*}/libsigc++-$pkgver.tar.xz"
|
|
builddir="$srcdir/libsigc++-$pkgver"
|
|
|
|
build() {
|
|
abuild-meson build
|
|
meson compile ${JOBS:+-j ${JOBS}} -C build
|
|
}
|
|
|
|
check() {
|
|
meson test --no-rebuild -v -C build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C build
|
|
}
|
|
|
|
sha512sums="
|
|
0ce4b56d85ccb0041096e2241523b9ca5bf0fd52f9655d2216e2280d5902075a4685023aa60058eb8ee9b7ed0ffc945d652940b0bda73f2fc7ce4de7371ca984 libsigc++-3.0.7.tar.xz
|
|
"
|