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:
15
package/libcofi/Config.in
Normal file
15
package/libcofi/Config.in
Normal file
@@ -0,0 +1,15 @@
|
||||
config BR2_PACKAGE_LIBCOFI
|
||||
bool "libcofi"
|
||||
depends on BR2_arm
|
||||
# builds a shared library
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
A replacement for memcpy and memset functionality for the
|
||||
Raspberry Pi with the intention of gaining greater
|
||||
performance.
|
||||
|
||||
https://github.com/simonjhall/copies-and-fills
|
||||
|
||||
comment "libcofi needs a toolchain w/ dynamic library"
|
||||
depends on BR2_arm
|
||||
depends on BR2_STATIC_LIBS
|
||||
2
package/libcofi/libcofi.hash
Normal file
2
package/libcofi/libcofi.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# locally computed
|
||||
sha256 72ec89c19267612b316ec9c5835c07212b8f0a377c5b4c20b6e46e69a6e4a5e5 libcofi-7313fbe12b0593034d0a1b606bf33c7cf4ababce.tar.gz
|
||||
20
package/libcofi/libcofi.mk
Normal file
20
package/libcofi/libcofi.mk
Normal file
@@ -0,0 +1,20 @@
|
||||
################################################################################
|
||||
#
|
||||
# libcofi
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBCOFI_VERSION = 7313fbe12b0593034d0a1b606bf33c7cf4ababce
|
||||
LIBCOFI_SITE = $(call github,simonjhall,copies-and-fills,$(LIBCOFI_VERSION))
|
||||
LIBCOFI_LICENSE = LGPL-2.1
|
||||
LIBCOFI_LICENSE_FILES = README.md
|
||||
|
||||
define LIBCOFI_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define LIBCOFI_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/libcofi_rpi.so $(TARGET_DIR)/usr/lib/libcofi_rpi.so
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user