contrib/cairomm/Pkgfile

18 lines
460 B
Plaintext
Raw Normal View History

2020-10-04 15:05:43 +02:00
# Description: C++ wrapper for the cairo graphics library.
# URL: https://cairographics.org/cairomm/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: cairo libsigc++
name=cairomm
version=1.16.0
release=1
source=(https://cairographics.org/releases/$name-$version.tar.xz)
build() {
2020-11-07 16:44:52 +01:00
meson build $name-$version --prefix=/usr \
--buildtype=plain \
-Db_ndebug=true
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2020-10-04 15:05:43 +02:00
}