23 lines
558 B
Plaintext
23 lines
558 B
Plaintext
# Description: C++ wrapper for the cairo graphics library.
|
|
# URL: http://cairographics.org/cairomm/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: cairo libsigc++2
|
|
|
|
name=cairomm-1.0
|
|
version=1.14.5
|
|
release=1
|
|
source=(https://cairographics.org/releases/cairomm-$version.tar.xz)
|
|
|
|
build() {
|
|
meson setup cairomm-$version bld \
|
|
--prefix=/usr \
|
|
--buildtype=release \
|
|
-D build-tests=false \
|
|
-D build-documentation=false \
|
|
-D b_lto=true \
|
|
-D b_pie=true
|
|
|
|
ninja -C bld -j ${JOBS:-1}
|
|
DESTDIR=$PKG ninja -C bld install
|
|
}
|