Skip to content

Commit

Permalink
Add libnice for building gstwebrtc
Browse files Browse the repository at this point in the history
  • Loading branch information
danyeaw authored and pbor committed Dec 30, 2024
1 parent 4570f49 commit 26668a4
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions gvsbuild/projects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
from gvsbuild.projects.libgxps import Libgxps
from gvsbuild.projects.libjpeg_turbo import LibjpegTurbo
from gvsbuild.projects.libmicrohttpd import Libmicrohttpd
from gvsbuild.projects.libnice import Libnice
from gvsbuild.projects.libpanel import Libpanel
from gvsbuild.projects.libpng import Libpng
from gvsbuild.projects.libpsl import Libpsl
Expand Down
1 change: 1 addition & 0 deletions gvsbuild/projects/gstreamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ def __init__(self):
"meson",
"ninja",
"gst-plugins-base",
"libnice",
"webrtc-audio-processing",
],
patches=[
Expand Down
39 changes: 39 additions & 0 deletions gvsbuild/projects/libnice.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Copyright (C) 2024 The Gvsbuild Authors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.

from gvsbuild.utils.base_builders import Meson
from gvsbuild.utils.base_expanders import GitRepo
from gvsbuild.utils.base_project import Project, project_add


@project_add
class Libnice(GitRepo, Meson):
def __init__(self):
Project.__init__(
self,
"libnice",
version="0.1.22",
repo_url="https://gitlab.freedesktop.org/libnice/libnice.git",
fetch_submodules=False,
tag="ae3eb16fd7d1237353bf64e899c612b8a63bca8a",
dependencies=[
"ninja",
"meson",
],
)

def build(self):
Meson.build(self)
self.install(r"LICENSE share\doc\libnice")

0 comments on commit 26668a4

Please sign in to comment.