summaryrefslogtreecommitdiff
path: root/repo/libnice/libnice.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/libnice/libnice.xibuild')
-rw-r--r--repo/libnice/libnice.xibuild33
1 files changed, 33 insertions, 0 deletions
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
+}