contrib/cairomm/Pkgfile

18 lines
447 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
2021-07-03 12:48:54 +02:00
version=1.16.1
2020-10-04 15:05:43 +02:00
release=1
source=(https://cairographics.org/releases/$name-$version.tar.xz)
build() {
2020-11-09 14:45:25 +01:00
meson setup build $name-$version --prefix=/usr \
2021-01-23 19:17:29 +01:00
--buildtype=plain
2020-11-09 14:45:25 +01:00
2020-11-07 16:44:52 +01:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2020-10-04 15:05:43 +02:00
}