summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Hoffmann <sho@relinux.de>2012-08-29 11:01:07 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-08-30 05:09:11 +0200
commitfa6e224e589be3386b9b6b7a9bf25fc26325efa5 (patch)
tree4b7f91b9dc82756caf2eb6159d2420b4df4a58a1
parentc72e4bc01ca5855c475896c2cd73a15ee25e0363 (diff)
liblo: new pachage
liblo is an implementation of the Open Sound Control protocol for POSIX systems. http://liblo.sourceforge.net/ [thomas.petazzoni@free-electrons.com: add dependency on thread support in toolchain] Signed-off-by: Stephan Hoffmann <sho@relinux.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/Config.in1
-rw-r--r--package/liblo/Config.in11
-rw-r--r--package/liblo/liblo.mk14
3 files changed, 26 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index f0fe0a681..5b4788fbf 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -295,6 +295,7 @@ source "package/libcdaudio/Config.in"
source "package/libcue/Config.in"
source "package/libcuefile/Config.in"
source "package/libid3tag/Config.in"
+source "package/liblo/Config.in"
source "package/libmad/Config.in"
source "package/libmpd/Config.in"
source "package/libreplaygain/Config.in"
diff --git a/package/liblo/Config.in b/package/liblo/Config.in
new file mode 100644
index 000000000..4c2d71944
--- /dev/null
+++ b/package/liblo/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_LIBLO
+ bool "liblo"
+ depends on BR2_TOOLCHAIN_HAS_THREADS
+ help
+ liblo is an implementation of the Open Sound Control
+ protocol for POSIX systems
+
+ http://liblo.sourceforge.net/
+
+comment "liblo requires thread support in toolchain"
+ depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/liblo/liblo.mk b/package/liblo/liblo.mk
new file mode 100644
index 000000000..924c3a7e6
--- /dev/null
+++ b/package/liblo/liblo.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# liblo
+#
+#############################################################
+LIBLO_VERSION = 0.26
+LIBLO_SOURCE = liblo-$(LIBLO_VERSION).tar.gz
+LIBLO_SITE = http://downloads.sourceforge.net/project/liblo/liblo/$(LIBLO_VERSION)
+
+LIBLO_LICENSE = LGPLv2.1+
+LIBLO_LICENSE_FILES = COPYING
+LIBLO_INSTALL_STAGING = YES
+
+$(eval $(autotools-package))