gnu: r-inline: Update to 0.3.16.
[jackhill/guix/guix.git] / gnu / packages / upnp.scm
CommitLineData
c4dc4466
SHT
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
0b5eff84 3;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
09c2fc2a 4;;; Copyright © 2016, 2017, 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
a811bca2 5;;; Copyright © 2018 Theodoros Foradis <theodoros@foradis.org>
f5854abc 6;;; Copyright © 2019 Jens Mølgaard <jens@zete.tk>
1d236620 7;;; Copyright © 2020 Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
c4dc4466
SHT
8;;;
9;;; This file is part of GNU Guix.
10;;;
11;;; GNU Guix is free software; you can redistribute it and/or modify it
12;;; under the terms of the GNU General Public License as published by
13;;; the Free Software Foundation; either version 3 of the License, or (at
14;;; your option) any later version.
15;;;
16;;; GNU Guix is distributed in the hope that it will be useful, but
17;;; WITHOUT ANY WARRANTY; without even the implied warranty of
18;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;;; GNU General Public License for more details.
20;;;
21;;; You should have received a copy of the GNU General Public License
22;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
23
24(define-module (gnu packages upnp)
25 #:use-module (gnu packages)
f5854abc
JM
26 #:use-module (gnu packages gettext)
27 #:use-module (gnu packages autotools)
28 #:use-module (gnu packages video)
29 #:use-module (gnu packages photo)
30 #:use-module (gnu packages image)
31 #:use-module (gnu packages mp3)
1d236620 32 #:use-module (gnu packages pkg-config)
f5854abc
JM
33 #:use-module (gnu packages xiph)
34 #:use-module (gnu packages sqlite)
c4dc4466
SHT
35 #:use-module (gnu packages python)
36 #:use-module (guix build-system gnu)
a811bca2 37 #:use-module (guix utils)
c4dc4466 38 #:use-module (guix download)
a811bca2 39 #:use-module (guix git-download)
c4dc4466 40 #:use-module (guix licenses)
f5854abc
JM
41 #:use-module (guix packages)
42 #:use-module (ice-9 match))
c4dc4466
SHT
43
44(define-public miniupnpc
45 (package
46 (name "miniupnpc")
09c2fc2a 47 (version "2.1.20191224")
c4dc4466
SHT
48 (source
49 (origin
50 (method url-fetch)
d9cf11e0 51 (uri (string-append "https://miniupnp.tuxfamily.org/files/"
9e080422 52 "miniupnpc-" version ".tar.gz"))
c4dc4466 53 (sha256
09c2fc2a 54 (base32 "1kv6dpj93gckvwvgzxl4vdqpwnicb0c8p0xw53m2gh5naiw44ys4"))))
c4dc4466
SHT
55 (build-system gnu-build-system)
56 (native-inputs
57 `(("python" ,python-2)))
58 (arguments
59 ;; The build system does not use a configure script but depends on
60 ;; `make'. Hence we should pass parameters to `make' instead and remove
61 ;; the configure phase.
62 '(#:make-flags
63 (list
05b1feb9 64 (string-append "SH=" (assoc-ref %build-inputs "bash") "/bin/sh")
c4dc4466 65 (string-append "INSTALLPREFIX=" (assoc-ref %outputs "out"))
caf0c0a9
LC
66 "CC=gcc"
67
68 ;; Allow executables to find libminiupnpc.so.
69 (string-append "LDFLAGS=-Wl,-rpath="
70 (assoc-ref %outputs "out") "/lib"))
c4dc4466 71 #:phases
cdbdaf7b 72 (modify-phases %standard-phases
5af82630
TGR
73 (delete 'configure)
74 (add-before 'install 'qualify-paths
75 (lambda* (#:key outputs #:allow-other-keys)
76 (substitute* "external-ip.sh"
77 (("upnpc")
1e000f17
TGR
78 (string-append (assoc-ref outputs "out") "/bin/upnpc")))
79 #t)))))
c4dc4466 80 (home-page "http://miniupnp.free.fr/")
e0f8a520 81 (synopsis "UPnP protocol client library")
c4dc4466 82 (description
e0f8a520 83 "The MiniUPnPc client library facilitates access to the services provided
8a6f168c
TGR
84by any @dfn{Universal Plug and Play} (UPnP) @dfn{Internet Gateway Device} (IGD)
85present on the network. In UPnP terminology, MiniUPnPc is a UPnP Control Point.
86
87It is useful whenever an application needs to listen for incoming connections
88while running behind a UPnP-enabled router or firewall. Such applications
89include peer-to-peer applications, active-mode FTP clients, DCC file transfers
90over IRC, instant messaging, network games, and most server software.")
c4dc4466
SHT
91 (license
92 (x11-style "file://LICENSE" "See 'LICENSE' file in the distribution"))))
0b5eff84
LF
93
94(define-public libupnp
95 (package
96 (name "libupnp")
47986cc8 97 (version "1.12.1")
0b5eff84
LF
98 (source
99 (origin
47986cc8
MB
100 (method url-fetch)
101 (uri (string-append "https://github.com/pupnp/pupnp/releases/download"
102 "/release-" version "/libupnp-" version".tar.bz2"))
0b5eff84
LF
103 (sha256
104 (base32
47986cc8
MB
105 "02a0dnbk1cla8xlb5l2zp09grv2hsf8n4jbd560mmzj830mn8dpw"))))
106 (native-inputs
107 `(("pkg-config" ,pkg-config)))
0b5eff84
LF
108 (build-system gnu-build-system)
109 (arguments
110 ;; The tests require a network device capable of multicasting which is
111 ;; not available in the build environment. See
112 ;; https://lists.gnu.org/archive/html/guix-devel/2015-01/msg00312.html.
113 `(#:tests? #f
60d758ec 114 #:configure-flags '("--disable-static")))
0b5eff84
LF
115 (home-page "http://pupnp.sourceforge.net")
116 (synopsis "Portable SDK for UPnP Devices")
117 (description
118 "The portable SDK for UPnP Devices (libupnp) provides developers with an
119API and code for building control points, devices, and bridges that are
120compliant with Version 1.0 of the Universal Plug and Play Device Architecture
121Specification and support several operating systems like Linux, *BSD, Solaris
122and others.")
123 (license bsd-3)))
f5854abc
JM
124
125(define-public readymedia
126 (package
127 (name "readymedia")
128 (version "1.2.1")
129 (source
130 (origin
131 (method git-fetch)
132 (uri (git-reference
133 (url "https://git.code.sf.net/p/minidlna/git")
134 (commit (string-append
135 "v"
136 (string-map (match-lambda
137 (#\. #\_)
138 (chr chr))
139 version)))))
140 (file-name (git-file-name name version))
141 (sha256
142 (base32
143 "160915yv38k0p5zmyncs12kkbbcd8m8fk9jq70fkfd5x6dz40xm4"))))
144 (build-system gnu-build-system)
145 (native-inputs
146 `(("automake" ,automake)
147 ("autoconf" ,autoconf)
148 ("gettext" ,gettext-minimal)))
149 (inputs
150 `(("libexif" ,libexif)
4bd428a7 151 ("libjpeg" ,libjpeg-turbo)
f5854abc
JM
152 ("libid3tag" ,libid3tag)
153 ("flac" ,flac)
154 ("libvorbis" ,libvorbis)
155 ("sqlite" ,sqlite)
156 ("ffmpeg" ,ffmpeg)))
157 (home-page "https://sourceforge.net/projects/minidlna/")
158 (synopsis "DLNA/UPnP-AV media server")
159 (description "ReadyMedia (formerly known as MiniDLNA) is a simple media
160server, which serves multimedia content to compatible clients on the network.
161It aims to be fully compliant with DLNA and UPnP-AV standards.")
162 (license gpl2)))