Commit fa6e224e authored by Stephan Hoffmann's avatar Stephan Hoffmann Committed by Thomas Petazzoni
Browse files

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: default avatarStephan Hoffmann <sho@relinux.de>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent c72e4bc0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"
+11 −0
Original line number Diff line number Diff line
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

package/liblo/liblo.mk

0 → 100644
+14 −0
Original line number Diff line number Diff line
#############################################################
#
# 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))