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:
17
package/lksctp-tools/Config.in
Normal file
17
package/lksctp-tools/Config.in
Normal file
@@ -0,0 +1,17 @@
|
||||
config BR2_PACKAGE_LKSCTP_TOOLS
|
||||
bool "lksctp-tools"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on !BR2_STATIC_LIBS # dlopen()
|
||||
help
|
||||
The lksctp-tools project provides a Linux user space library
|
||||
for SCTP (libsctp) including C language header files
|
||||
(netinet/sctp.h) for accessing SCTP specific application
|
||||
programming interfaces not provided by the standard sockets,
|
||||
and also some helper utilities around SCTP.
|
||||
|
||||
http://lksctp.sourceforge.net/
|
||||
|
||||
comment "lksctp-tools needs a toolchain w/ threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
3
package/lksctp-tools/lksctp-tools.hash
Normal file
3
package/lksctp-tools/lksctp-tools.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# From https://sourceforge.net/projects/lksctp/files/lksctp-tools/
|
||||
md5 68e9b8fa4d4e331029b247b72d46d7a5 lksctp-tools-1.0.17.tar.gz
|
||||
sha1 941b0b5c39e364a971f514bba66120435660e518 lksctp-tools-1.0.17.tar.gz
|
||||
22
package/lksctp-tools/lksctp-tools.mk
Normal file
22
package/lksctp-tools/lksctp-tools.mk
Normal file
@@ -0,0 +1,22 @@
|
||||
################################################################################
|
||||
#
|
||||
# lksctp-tools
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LKSCTP_TOOLS_VERSION = 1.0.17
|
||||
LKSCTP_TOOLS_SITE = http://downloads.sourceforge.net/project/lksctp/lksctp-tools
|
||||
LKSCTP_TOOLS_INSTALL_STAGING = YES
|
||||
# configure not shipped
|
||||
LKSCTP_TOOLS_AUTORECONF = YES
|
||||
LKSCTP_TOOLS_LICENSE = LGPL-2.1 (library), GPL-2.0+ (programs)
|
||||
LKSCTP_TOOLS_LICENSE_FILES = COPYING.lib COPYING
|
||||
LKSCTP_TOOLS_CONF_OPTS = --disable-tests
|
||||
|
||||
# Cleanup installed target source code
|
||||
define LKSCTP_TOOLS_CLEANUP_TARGET
|
||||
rm -rf $(TARGET_DIR)/usr/share/lksctp-tools
|
||||
endef
|
||||
LKSCTP_TOOLS_POST_INSTALL_TARGET_HOOKS += LKSCTP_TOOLS_CLEANUP_TARGET
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user