mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
This package is required by tensorflow-lite. This package doesn't provide a conventional install mechanism so we need to install it manually. Tested-by: Stefan Hager <stefan.hager@ginzinger.com> Signed-off-by: Stefan Hager <stefan.hager@ginzinger.com> Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
24 lines
727 B
Makefile
24 lines
727 B
Makefile
################################################################################
|
|
#
|
|
# fft2d
|
|
#
|
|
################################################################################
|
|
|
|
FFT2D_VERSION = 2006.12.28
|
|
FFT2D_SITE = https://www.kurims.kyoto-u.ac.jp/~ooura
|
|
FFT2D_SOURCE = fft2d.tgz
|
|
FFT2D_LICENSE = MIT-like
|
|
FFT2D_LICENSE_FILES = readme2d.txt
|
|
FFT2D_INSTALL_STAGING = YES
|
|
# Only installs headers/sources
|
|
FFT2D_INSTALL_TARGET = NO
|
|
|
|
define FFT2D_INSTALL_STAGING_CMDS
|
|
mkdir -p $(STAGING_DIR)/usr/include/fft2d
|
|
$(INSTALL) -m 0644 $(@D)/*.c $(STAGING_DIR)/usr/include/fft2d
|
|
$(INSTALL) -m 0644 $(@D)/*.f $(STAGING_DIR)/usr/include/fft2d
|
|
$(INSTALL) -m 0644 $(@D)/*.h $(STAGING_DIR)/usr/include/fft2d
|
|
endef
|
|
|
|
$(eval $(generic-package))
|