From 052c4d4c8d9b59aaf09b2386743f50646d9a31cc Mon Sep 17 00:00:00 2001 From: Bob Funk Date: Thu, 25 May 2023 21:04:28 +0100 Subject: libraries/gupnp-dlna: Added (GUPnP DLNA) Signed-off-by: bedlam Signed-off-by: Willy Sudiarto Raharjo --- libraries/gupnp-dlna/README | 10 +++ libraries/gupnp-dlna/gupnp-dlna.SlackBuild | 109 +++++++++++++++++++++++++++++ libraries/gupnp-dlna/gupnp-dlna.info | 10 +++ libraries/gupnp-dlna/slack-desc | 19 +++++ 4 files changed, 148 insertions(+) create mode 100644 libraries/gupnp-dlna/README create mode 100644 libraries/gupnp-dlna/gupnp-dlna.SlackBuild create mode 100644 libraries/gupnp-dlna/gupnp-dlna.info create mode 100644 libraries/gupnp-dlna/slack-desc (limited to 'libraries/gupnp-dlna') diff --git a/libraries/gupnp-dlna/README b/libraries/gupnp-dlna/README new file mode 100644 index 000000000000..151f73879867 --- /dev/null +++ b/libraries/gupnp-dlna/README @@ -0,0 +1,10 @@ +GUPnP is an object-oriented open source framework for creating UPnP +devices and control points, written in C using GObject and libsoup. The +GUPnP API is intended to be easy to use, efficient and flexible. + +GUPnP DLNA is a small utility library that aims to ease the DLNA-related +tasks such as media profile guessing, transcoding to a given profile, +etc. + +GUPnP DLNA is free software released under the GNU LGPL. + diff --git a/libraries/gupnp-dlna/gupnp-dlna.SlackBuild b/libraries/gupnp-dlna/gupnp-dlna.SlackBuild new file mode 100644 index 000000000000..40940fc98d46 --- /dev/null +++ b/libraries/gupnp-dlna/gupnp-dlna.SlackBuild @@ -0,0 +1,109 @@ +#!/bin/bash + +# Slackware build script for gupnp-dlna + +# Copyright 2023, Bob Funk, Winnipeg Canada +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=gupnp-dlna +VERSION=${VERSION:-0.12.0} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.xz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +mkdir build +cd build + CFLAGS="$SLKCFLAGS" \ + CXXFLAGS="$SLKCFLAGS" \ + meson .. \ + --buildtype=release \ + --infodir=/usr/info \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --localstatedir=/var \ + --mandir=/usr/man \ + --prefix=/usr \ + --sysconfdir=/etc \ + -Dstrip=true + "${NINJA:=ninja}" + DESTDIR=$PKG $NINJA install +cd .. + +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 NEWS README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/libraries/gupnp-dlna/gupnp-dlna.info b/libraries/gupnp-dlna/gupnp-dlna.info new file mode 100644 index 000000000000..2e5a3699f7a0 --- /dev/null +++ b/libraries/gupnp-dlna/gupnp-dlna.info @@ -0,0 +1,10 @@ +PRGNAM="gupnp-dlna" +VERSION="0.12.0" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gupnp-dlna" +DOWNLOAD="https://download.gnome.org/sources/gupnp-dlna/0.12/gupnp-dlna-0.12.0.tar.xz" +MD5SUM="763703ddfa2660ed881296cab5e07047" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Bob Funk" +EMAIL="bobfunk11@gmail.com" diff --git a/libraries/gupnp-dlna/slack-desc b/libraries/gupnp-dlna/slack-desc new file mode 100644 index 000000000000..57cd18699037 --- /dev/null +++ b/libraries/gupnp-dlna/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to ledlnae one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +gupnp-dlna: gupnp-dlna (GUPnP DLNA) +gupnp-dlna: +gupnp-dlna: GUPnP DLNA is a small utility library that aims to ease the DLNA +gupnp-dlna: related tasks such as media profile guessing, transcoding to a given +gupnp-dlna: profile, etc. +gupnp-dlna: +gupnp-dlna: +gupnp-dlna: +gupnp-dlna: +gupnp-dlna: https://gitlab.gnome.org/GNOME/gupnp-dlna +gupnp-dlna: -- cgit v1.2.3