package/cctz: new package

CCTZ is a C++ library for translating between absolute
and civil times using the rules of a time zone.

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Gilles Talis 2019-12-22 14:23:14 +01:00 committed by Thomas Petazzoni
parent 0fa9476853
commit 1be68a1df6
5 changed files with 61 additions and 0 deletions

View File

@ -983,6 +983,7 @@ F: configs/qemu_*
N: Gilles Talis <gilles.talis@gmail.com>
F: board/freescale/imx8mmevk/
F: configs/freescale_imx8mmevk_defconfig
F: package/cctz/
F: package/fdk-aac/
F: package/httping/
F: package/iozone/

View File

@ -1729,6 +1729,7 @@ menu "Other"
source "package/boost/Config.in"
source "package/c-capnproto/Config.in"
source "package/capnproto/Config.in"
source "package/cctz/Config.in"
source "package/clang/Config.in"
source "package/clapack/Config.in"
source "package/classpath/Config.in"

29
package/cctz/Config.in Normal file
View File

@ -0,0 +1,29 @@
config BR2_PACKAGE_CCTZ
bool "cctz"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
select BR2_TARGET_TZ_INFO # runtime dependency
help
CCTZ is a C++ library for translating between absolute
and civil times using the rules of a time zone.
https://github.com/google/cctz
if BR2_PACKAGE_CCTZ
config BR2_PACKAGE_CCTZ_INSTALL_TOOLS
bool "Install tools"
help
This option allows installing CCTZ tools.
config BR2_PACKAGE_CCTZ_INSTALL_EXAMPLES
bool "Install example programs"
help
This option allows installing CCTZ example programs.
endif
comment "cctz needs a toolchain w/ C++, threads, gcc >= 4.8"
depends on !BR2_INSTALL_LIBSTDCPP || \
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8

3
package/cctz/cctz.hash Normal file
View File

@ -0,0 +1,3 @@
# locally computed
sha256 8615b20d4e33e02a271c3b93a3b208e3d7d5d66880f5f6208b03426e448f32db cctz-2.3.tar.gz
sha256 c79a7fea0e3cac04cd43f20e7b648e5a0ff8fa5344e644b0ee09ca1162b62747 LICENSE.txt

27
package/cctz/cctz.mk Normal file
View File

@ -0,0 +1,27 @@
################################################################################
#
# cctz
#
################################################################################
CCTZ_VERSION = 2.3
CCTZ_SITE = $(call github,google,cctz,v$(CCTZ_VERSION))
CCTZ_LICENSE = Apache-2.0
CCTZ_LICENSE_FILES = LICENSE.txt
CCTZ_INSTALL_STAGING = YES
CCTZ_CONF_OPTS = -DBUILD_TESTING=OFF
ifeq ($(BR2_PACKAGE_CCTZ_INSTALL_TOOLS),y)
CCTZ_CONF_OPTS += -DBUILD_TOOLS=ON
else
CCTZ_CONF_OPTS += -DBUILD_TOOLS=OFF
endif
ifeq ($(BR2_PACKAGE_CCTZ_INSTALL_EXAMPLES),y)
CCTZ_CONF_OPTS += -DBUILD_EXAMPLES=ON
else
CCTZ_CONF_OPTS += -DBUILD_EXAMPLES=OFF
endif
$(eval $(cmake-package))