summaryrefslogtreecommitdiffstats
path: root/libraries/gupnp
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2021-04-18 12:52:27 +0200
committer Robby Workman2021-04-18 21:30:18 +0200
commit4ec8e6c460340059d5f96e90b37c3471f5ef5f0b (patch)
treeb0b12cffe0e7936be5c4cd59801b6fca6cc635b2 /libraries/gupnp
parent2f8e4c6848dc165444d3cff670e25a3e8916b612 (diff)
downloadslackbuilds-4ec8e6c460340059d5f96e90b37c3471f5ef5f0b.tar.gz
libraries/gupnp: Updated for version 1.2.4.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/gupnp')
-rw-r--r--libraries/gupnp/gupnp.SlackBuild34
-rw-r--r--libraries/gupnp/gupnp.info6
2 files changed, 20 insertions, 20 deletions
diff --git a/libraries/gupnp/gupnp.SlackBuild b/libraries/gupnp/gupnp.SlackBuild
index 61be96075b..69f3a53433 100644
--- a/libraries/gupnp/gupnp.SlackBuild
+++ b/libraries/gupnp/gupnp.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for gupnp
-# Copyright 2016 Willy Sudiarto Raharjo <willysr@slackbuilds.org>
+# Copyright 2016-2021 Willy Sudiarto Raharjo <willysr@slackbuilds.org>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=gupnp
-VERSION=${VERSION:-1.0.3}
+VERSION=${VERSION:-1.2.4}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -69,27 +69,27 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --enable-introspection=yes \
- --enable-static=no \
- --build=$ARCH-slackware-linux
+mkdir -p build
+cd build
-make
-make install DESTDIR=$PKG
+meson --prefix=/usr \
+ --buildtype=release \
+ --localstatedir=/var \
+ --libdir=lib${LIBDIRSUFFIX} \
+ --mandir=/usr/man \
+ ../
+ninja
+DESTDIR=$PKG ninja install
+cd ..
+
+# Don't ship .la files:
+rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING INSTALL NEWS README doc/html/* $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a AUTHORS COPYING NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
find $PKG/usr/doc/$PRGNAM-$VERSION/ -type f -exec chmod 644 {} \;
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
diff --git a/libraries/gupnp/gupnp.info b/libraries/gupnp/gupnp.info
index a1c01de17c..05c1438cff 100644
--- a/libraries/gupnp/gupnp.info
+++ b/libraries/gupnp/gupnp.info
@@ -1,8 +1,8 @@
PRGNAM="gupnp"
-VERSION="1.0.3"
+VERSION="1.2.4"
HOMEPAGE="https://wiki.gnome.org/GUPnP/"
-DOWNLOAD="http://ftp.acc.umu.se/pub/GNOME/sources/gupnp/1.0/gupnp-1.0.3.tar.xz"
-MD5SUM="0d1a440a2b72bb1f468727e52f8735b9"
+DOWNLOAD="http://ftp.acc.umu.se/pub/GNOME/sources/gupnp/1.2/gupnp-1.2.4.tar.xz"
+MD5SUM="7c9c7cd80e36d9fb1e5b0267571fc17d"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="gssdp"