diff options
Diffstat (limited to 'repo/libnice')
-rw-r--r-- | repo/libnice/libnice-meson-0.58.patch | 18 | ||||
-rw-r--r-- | repo/libnice/libnice.xibuild | 33 |
2 files changed, 51 insertions, 0 deletions
diff --git a/repo/libnice/libnice-meson-0.58.patch b/repo/libnice/libnice-meson-0.58.patch new file mode 100644 index 0000000..a8ef9c5 --- /dev/null +++ b/repo/libnice/libnice-meson-0.58.patch @@ -0,0 +1,18 @@ +diff -urN libnice-0.1.18.orig/docs/reference/libnice/meson.build libnice-0.1.18/docs/reference/libnice/meson.build +--- libnice-0.1.18.orig/docs/reference/libnice/meson.build 2021-05-21 14:28:05.745156826 -0600 ++++ libnice-0.1.18/docs/reference/libnice/meson.build 2021-05-21 14:28:25.091881508 -0600 +@@ -63,14 +63,3 @@ + ], + install: true, + check: true) +- +-# If we ever need to regenerate this diagram. +-# Since it’s not expected to change much, let’s not depend on GraphViz to +-# build the docs (that's also why we don't use find_program('dot') here) +-run_target('update-states.png', +- command: ['dot', +- '-Tpng', +- '-o', join_paths(meson.current_source_dir(), 'states.png'), +- '-Gsize=9.6,2.9!', +- '-Gdpi=200', +- files('states.gv')]) diff --git a/repo/libnice/libnice.xibuild b/repo/libnice/libnice.xibuild new file mode 100644 index 0000000..1324bf4 --- /dev/null +++ b/repo/libnice/libnice.xibuild @@ -0,0 +1,33 @@ +#!/bin/sh + +NAME="libnice" +DESC="GLib ICE implementation" + +MAKEDEPS="glib gnutls gstreamer gobject-introspection gtk2 meson" + +PKG_VER=0.1.18 +SOURCE="https://nice.freedesktop.org/releases/libnice-$PKG_VER.tar.gz" + +ADDITIONAL=" +libnice-meson-0.58.patch +" + +prepare () { + apply_patches +} + +build() { + meson --prefix=/usr \ + -Dgtk_doc=disabled \ + -Dtests=disabled \ + -Dexamples=disabled \ + -Dintrospection=enabled \ + -Dcrypto-library=gnutls \ + -Dgstreamer=enabled \ + -Dgupnp=disabled builddir + meson compile ${JOBS:+-j ${JOBS}} -C builddir +} + +package() { + DESTDIR="$PKG_DEST" meson install --no-rebuild -C builddir +} |