diff options
author | davidovski <david@davidovski.xyz> | 2022-05-18 23:40:53 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-18 23:40:53 +0100 |
commit | 3ed93901dda10d71a712922a78a8bd06b3b38da6 (patch) | |
tree | 20de8e99d0705934693760e0041a7f8966dce4ea /repo/x11/cairomm/cairomm.xibuild | |
parent | 0b977787374349328a21af0deade30d534cf3978 (diff) | |
parent | 4cfc98e1be889f359613a54010b67e13c673e4ab (diff) |
Merge branch 'master' of git.cheetah.remote:xilinux/buildfiles
Diffstat (limited to 'repo/x11/cairomm/cairomm.xibuild')
-rw-r--r-- | repo/x11/cairomm/cairomm.xibuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/repo/x11/cairomm/cairomm.xibuild b/repo/x11/cairomm/cairomm.xibuild new file mode 100644 index 0000000..3d98220 --- /dev/null +++ b/repo/x11/cairomm/cairomm.xibuild @@ -0,0 +1,21 @@ +#!/bin/sh + +NAME="cairomm" +DESC="C++ bindings to Cairo vector graphics library" + +MAKEDEPS="meson ninja " +DEPS="cairo libsigc++ " + +PKG_VER=1.14.3 +SOURCE="https://www.cairographics.org/releases/cairomm-$PKG_VER.tar.xz" + +build () { + cd build && + meson --prefix=/usr \ + .. && + ninja +} + +package () { + DESTDIR=$PKG_DEST ninja install +} |