gnu: upower: Enable GObject introspection.
[jackhill/guix/guix.git] / gnu / packages / libupnp.scm
CommitLineData
18a5a9a1
FB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages libupnp)
20 #:use-module (guix licenses)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu))
24
25(define-public libupnp
26 (package
27 (name "libupnp")
28 (version "1.6.19")
29 (source
30 (origin
31 (method url-fetch)
32 (uri (string-append "mirror://sourceforge/pupnp/pupnp/libUPnP%20"
33 version "/" name "-" version ".tar.bz2"))
34 (sha256
35 (base32
36 "0amjv4lypvclmi4vim2qdyw5xa6v4x50zjgf682vahqjc0wjn55k"))))
37 (build-system gnu-build-system)
38 (arguments
39 ;; The tests require a network device capable of multicasting which is
40 ;; not available in the build environment. See
41 ;; https://lists.gnu.org/archive/html/guix-devel/2015-01/msg00312.html.
42 `(#:tests? #f
43 #:configure-flags '("--enable-ipv6")))
44 (home-page "http://pupnp.sourceforge.net")
45 (synopsis "Portable SDK for UPnP Devices")
46 (description
47 "The portable SDK for UPnP Devices (libupnp) provides developers with an
48API and open source code for building control points, devices, and bridges
49that are compliant with Version 1.0 of the Universal Plug and Play Device
50Architecture Specification and support several operating systems like Linux,
51*BSD, Solaris and others.")
52 (license bsd-3)))