Date: Wednesday, April 12, 2023 @ 22:28:05
Author: heftig
Revision: 473997
archrelease: copy trunk to extra-x86_64
Added:
libnice/repos/extra-x86_64/PKGBUILD
(from rev 473996, libnice/trunk/PKGBUILD)
Deleted:
libnice/repos/extra-x86_64/PKGBUILD
----------+
PKGBUILD | 99 ++++++++++++++++++++++++++++++++++---------------------------
1 file changed, 56 insertions(+), 43 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-04-12 22:25:47 UTC (rev 473996)
+++ PKGBUILD 2023-04-12 22:28:05 UTC (rev 473997)
@@ -1,43 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
-# Contributor: Ionut Biru <[email protected]>
-# Contributor: William Díaz <[email protected]>
-
-pkgname=libnice
-pkgver=0.1.21
-pkgrel=1
-pkgdesc="An implementation of the IETF's draft ICE (for p2p UDP data streams)"
-url="https://nice.freedesktop.org"
-arch=(x86_64)
-license=(LGPL)
-depends=(glib2 gnutls gupnp-igd)
-makedepends=(gstreamer gtk-doc git meson gobject-introspection graphviz)
-optdepends=('gstreamer: "nice" GStreamer plugin')
-provides=(libnice.so)
-options=(debug)
-_commit=3d9cae16a5094aadb1651572644cb5786a8b4e2d # tags/0.1.21^0
-source=("git+https://gitlab.freedesktop.org/libnice/libnice.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
- cd libnice
- git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
-}
-
-prepare() {
- cd libnice
-}
-
-build() {
- arch-meson libnice build -D gtk_doc=enabled
- meson compile -C build
-}
-
-check() {
- meson test -C build --print-errorlogs
-}
-
-package() {
- meson install -C build --destdir "$pkgdir"
-}
-
-# vim:set sw=2 sts=-1 et:
Copied: libnice/repos/extra-x86_64/PKGBUILD (from rev 473996,
libnice/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-04-12 22:28:05 UTC (rev 473997)
@@ -0,0 +1,56 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+# Contributor: Ionut Biru <[email protected]>
+# Contributor: William Díaz <[email protected]>
+
+pkgname=libnice
+pkgver=0.1.21
+pkgrel=2
+pkgdesc="An implementation of the IETF's draft ICE (for p2p UDP data streams)"
+url="https://nice.freedesktop.org"
+arch=(x86_64)
+license=(LGPL)
+depends=(
+ glib2
+ gnutls
+ gupnp-igd
+)
+makedepends=(
+ git
+ gobject-introspection
+ graphviz
+ gstreamer
+ gtk-doc
+ meson
+)
+optdepends=('gstreamer: "nice" GStreamer plugin')
+provides=(libnice.so)
+_commit=3d9cae16a5094aadb1651572644cb5786a8b4e2d # tags/0.1.21^0
+source=("git+https://gitlab.freedesktop.org/libnice/libnice.git#commit=$_commit")
+b2sums=('SKIP')
+
+pkgver() {
+ cd libnice
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd libnice
+
+ # GUPnP-IGD 1.6
+ sed -i 's/gupnp-igd-1\.0/gupnp-igd-1.6/' meson.build
+}
+
+build() {
+ arch-meson libnice build -D gtk_doc=enabled
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: