mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
11
package/liblo/Config.in
Normal file
11
package/liblo/Config.in
Normal file
@@ -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 needs a toolchain w/ threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||
7
package/liblo/liblo.hash
Normal file
7
package/liblo/liblo.hash
Normal file
@@ -0,0 +1,7 @@
|
||||
# From http://sourceforge.net/projects/liblo/files/liblo/0.30/
|
||||
sha1 152a3260d186f111a71508dc0ed709984960f130 liblo-0.30.tar.gz
|
||||
md5 fa1a9d45f86fc18fb54019f670ff2262 liblo-0.30.tar.gz
|
||||
|
||||
# Locally computed
|
||||
sha256 30a7c9de49a25ed7f2425a7a7415f5b14739def62431423d3419ea26fb978d1b liblo-0.30.tar.gz
|
||||
sha256 5df07007198989c622f5d41de8d703e7bef3d0e79d62e24332ee739a452af62a COPYING
|
||||
23
package/liblo/liblo.mk
Normal file
23
package/liblo/liblo.mk
Normal file
@@ -0,0 +1,23 @@
|
||||
################################################################################
|
||||
#
|
||||
# liblo
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBLO_VERSION = 0.30
|
||||
LIBLO_SITE = http://downloads.sourceforge.net/project/liblo/liblo/$(LIBLO_VERSION)
|
||||
|
||||
LIBLO_LICENSE = LGPL-2.1+
|
||||
LIBLO_LICENSE_FILES = COPYING
|
||||
LIBLO_INSTALL_STAGING = YES
|
||||
|
||||
# IPv6 support broken, issue known upstream
|
||||
LIBLO_CONF_OPTS = --disable-ipv6
|
||||
|
||||
# Liblo uses atomic builtins, so we need to link with libatomic for
|
||||
# the architectures who explicitly need libatomic.
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
||||
LIBLO_CONF_ENV += LIBS="-latomic"
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user