mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
libcofi: new package
replacement for memcpy and memset functionality This package was originally found at : https://github.com/huceke/buildroot-rbp By gimli <ebsi4711@gmail.com> [Peter: wrap help text] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
94d33410b2
commit
8bc34206c2
@ -512,6 +512,7 @@ endmenu
|
|||||||
menu "Other"
|
menu "Other"
|
||||||
source "package/apr/Config.in"
|
source "package/apr/Config.in"
|
||||||
source "package/apr-util/Config.in"
|
source "package/apr-util/Config.in"
|
||||||
|
source "package/libcofi/Config.in"
|
||||||
source "package/classpath/Config.in"
|
source "package/classpath/Config.in"
|
||||||
source "package/fftw/Config.in"
|
source "package/fftw/Config.in"
|
||||||
source "package/libargtable2/Config.in"
|
source "package/libargtable2/Config.in"
|
||||||
|
8
package/libcofi/Config.in
Normal file
8
package/libcofi/Config.in
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
config BR2_PACKAGE_LIBCOFI
|
||||||
|
bool "libcofi"
|
||||||
|
depends on BR2_arm
|
||||||
|
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
|
20
package/libcofi/libcofi.mk
Normal file
20
package/libcofi/libcofi.mk
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#############################################################
|
||||||
|
#
|
||||||
|
# libcofi
|
||||||
|
#
|
||||||
|
#############################################################
|
||||||
|
|
||||||
|
LIBCOFI_VERSION = 7313fbe12b0593034d0a1b606bf33c7cf4ababce
|
||||||
|
LIBCOFI_SITE = http://github.com/simonjhall/copies-and-fills/tarball/master
|
||||||
|
LIBCOFI_LICENSE = LGPLv2.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))
|
Loading…
x
Reference in New Issue
Block a user