1
0
forked from ports/contrib

[notify] libnice: 0.1.17 -> 0.1.18; build system changed to meson/ninja, check revdep after updating

This commit is contained in:
Tim Biermann 2020-11-11 08:26:45 +00:00
parent becf15f913
commit a79c2a50cb
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 14 additions and 20 deletions

View File

@ -26,12 +26,10 @@ drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/girepository-1.0/
-rw-r--r-- root/root usr/lib/girepository-1.0/Nice-0.1.typelib
drwxr-xr-x root/root usr/lib/gstreamer-1.0/
-rwxr-xr-x root/root usr/lib/gstreamer-1.0/libgstnice.la
-rwxr-xr-x root/root usr/lib/gstreamer-1.0/libgstnice.so
-rwxr-xr-x root/root usr/lib/libnice.la
lrwxrwxrwx root/root usr/lib/libnice.so -> libnice.so.10.10.0
lrwxrwxrwx root/root usr/lib/libnice.so.10 -> libnice.so.10.10.0
-rwxr-xr-x root/root usr/lib/libnice.so.10.10.0
lrwxrwxrwx root/root usr/lib/libnice.so -> libnice.so.10
lrwxrwxrwx root/root usr/lib/libnice.so.10 -> libnice.so.10.11.0
-rwxr-xr-x root/root usr/lib/libnice.so.10.11.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/nice.pc
drwxr-xr-x root/root usr/share/

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31yudrdU/Aqbg4MIHR76kScvNvFCVBB0BeZjjZk/XlHWGbArUKfL2pdUfF/XrrS/Fb9q8wvwg0W3xyG/j0egYQM=
SHA256 (Pkgfile) = f8b4c5dd7b3deefcb99160b0879f9af6941ec6d5a10f37ec289bff90e1d13a44
SHA256 (.footprint) = c725664341bed086b25c194d2154f5fd583353a0f6a2e1d5cf6bcb0fddbdd1c6
SHA256 (libnice-0.1.17.tar.gz) = 1952a0dec58b5c9ccc3f25193df4e2d1244cb382cac611b71e25afcd7b069526
RWSagIOpLGJF35dCMQwyJkWkJnvWr/vdLK/hby5n+Rdooe1mBA4j1/PMqPEmqNxpHpyBLpvUHI8x37PC+lPm083zVXZvn7hhVwY=
SHA256 (Pkgfile) = 22dcb9ff3ae088020902941515b5541b1dddbc75fb0d4bf64a68fb3b69122cb3
SHA256 (.footprint) = 22f029f00e78cdc75fab6fdf01c57c5d1013b12571e06b6a8f2be0b5d36d6a88
SHA256 (libnice-0.1.18.tar.gz) = 5eabd25ba2b54e817699832826269241abaa1cf78f9b240d1435f936569273f4

View File

@ -4,21 +4,17 @@
# Depends on: gstreamer
name=libnice
version=0.1.17
version=0.1.18
release=1
source=(https://nice.freedesktop.org/releases/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
meson setup $name-$version build \
--prefix=/usr \
--enable-gtk-doc=no \
--enable-gtk-doc-html=no
--buildtype=plain \
-D b_ndebug=true \
-D gtk_doc=disabled
make
make DESTDIR=$PKG install
# gtk-doc is still generated!
rm -r $PKG/usr/share/gtk-doc
meson compile -C build
DESTDIR=$PKG meson install -C build
}