mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
Add missing *.hash files for all board packages using the ix-board macro; they declare LICENSE_FILES = LICENSE but had no hash file, producing a warning during make legal-info. Fix the date-cpp package where the hash file was named date.hash instead of date-cpp.hash (package name is derived from the directory, not the mk filename), causing Buildroot to skip the hash check entirely. Add hash files for local-site packages confd-test-mode, netd, and onieprom that declared LICENSE_FILES but provided no hash. Also, rename package/date-cpp/date.mk to date-cpp.mk. Buildroot derives the package name from the directory name, so the mk file must match. To handle the archive name different we set DATE_CPP_SOURCE. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
12 lines
366 B
Makefile
12 lines
366 B
Makefile
DATE_CPP_VERSION = 3.0.1
|
|
DATE_CPP_SOURCE = date-$(DATE_CPP_VERSION).tar.gz
|
|
DATE_CPP_SITE = $(call github,HowardHinnant,date,v$(DATE_CPP_VERSION))
|
|
DATE_CPP_INSTALL_STAGING = YES
|
|
DATE_CPP_LICENSE = MIT
|
|
DATE_CPP_LICENSE_FILES = LICENSE.txt
|
|
DATE_CPP_CONF_OPTS = \
|
|
-DBUILD_TZ_LIB=ON \
|
|
-DUSE_SYSTEM_TZ_DB:BOOL=ON \
|
|
-DENABLE_DATE_TESTING=OFF
|
|
$(eval $(cmake-package))
|