This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

15
package/libcofi/Config.in Normal file
View 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

View File

@@ -0,0 +1,2 @@
# locally computed
sha256 72ec89c19267612b316ec9c5835c07212b8f0a377c5b4c20b6e46e69a6e4a5e5 libcofi-7313fbe12b0593034d0a1b606bf33c7cf4ababce.tar.gz

View 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))