summaryrefslogtreecommitdiffstats
path: root/package/libupnp
diff options
context:
space:
mode:
authorHans-Christian Egtvedt2008-09-18 08:48:20 +0200
committerHans-Christian Egtvedt2008-09-18 08:48:20 +0200
commitaff967f068965dac43231d7c8a17ba87871f3712 (patch)
tree4904ec3514266ec3f6e07474a8fc4a8c2565d753 /package/libupnp
parentlighttpd: don't enable openssl support by default (diff)
downloadbuildroot-aff967f068965dac43231d7c8a17ba87871f3712.tar.gz
buildroot-aff967f068965dac43231d7c8a17ba87871f3712.tar.xz
buildroot-aff967f068965dac43231d7c8a17ba87871f3712.zip
libupnp: add package libupnp
This patch adds libupnp package to Buildroot. libupnp provides developers with an API that are compliant with version 1.0 of the Universal Plug and Play Device Architecture Specification. http://pupnp.sourceforge.net/ Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Diffstat (limited to 'package/libupnp')
-rw-r--r--package/libupnp/Config.in9
-rw-r--r--package/libupnp/libupnp.mk13
2 files changed, 22 insertions, 0 deletions
diff --git a/package/libupnp/Config.in b/package/libupnp/Config.in
new file mode 100644
index 000000000..6b1a6cf99
--- /dev/null
+++ b/package/libupnp/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_LIBUPNP
+ bool "libupnp"
+ help
+ The portable SDK for UPnP(tm) Devices (libupnp) provides developers
+ with an API and open source code for building control points,
+ devices, and bridges that are compliant with Version 1.0 of the
+ Universal Plug and Play Device Architecture Specification
+
+ http://pupnp.sourceforge.net/
diff --git a/package/libupnp/libupnp.mk b/package/libupnp/libupnp.mk
new file mode 100644
index 000000000..9cd2e7f82
--- /dev/null
+++ b/package/libupnp/libupnp.mk
@@ -0,0 +1,13 @@
+#############################################################
+#
+# libupnp
+#
+#############################################################
+LIBUPNP_VERSION:=1.6.6
+LIBUPNP_SOURCE:=libupnp-$(LIBUPNP_VERSION).tar.bz2
+LIBUPNP_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/pupnp
+
+LIBUPNP_INSTALL_STAGING:=YES
+LIBUPNP_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) install-strip
+
+$(eval $(call AUTOTARGETS,package,libupnp))