| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include $(ADK_TOPDIR)/rules.mk
- PKG_NAME:= tzdata
- PKG_VERSION:= 2014d
- PKG_RELEASE:= 1
- PKG_HASH:= 4b4966912f5d4a299b0bdf47e6f3103d82dc6a0b5a6b321e2b9d5662597a62f0
- PKG_DESCR:= timezone data (/usr/share/zoneinfo)
- PKG_SECTION:= base/apps
- PKG_URL:= http://www.iana.org/time-zones/
- PKG_SITES:= http://www.iana.org/time-zones/repository/releases/
- PKG_NOPARALLEL:= 1
- PKG_LIBC_DEPENDS:= glibc musl
- DISTFILES:= $(PKG_NAME)$(PKG_VERSION).tar.gz
- WRKDIST= $(WRKDIR)
- include $(ADK_TOPDIR)/mk/package.mk
- $(eval $(call PKG_template,TZDATA,tzdata,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
- CONFIG_STYLE:= manual
- HOST_CFLAGS+= -DSTD_INSPIRED=1 -DHAVE_STDINT_H=1
- TARGET_CFLAGS+= -DHAVE_INTTYPES_H=1
- XAKE_FLAGS+= TZDIR="/usr/share/zoneinfo" cc="$(TARGET_CC)"
- ALL_TARGET:= ALL
- INSTALL_TARGET:= INSTALL
- tzdata-install:
- $(INSTALL_DIR) $(IDIR_TZDATA)/usr/share/zoneinfo $(IDIR_TZDATA)/etc
- cd $(WRKINST) && for f in UTC $(ADK_RUNTIME_TIMEZONE); do \
- test -s usr/share/zoneinfo/"$$f" || continue; \
- echo usr/share/zoneinfo/"$$f" | \
- $(STAGING_HOST_DIR)/usr/bin/cpio -pdu $(IDIR_TZDATA)/; \
- done
- tz=; cd $(IDIR_TZDATA)/usr/share/zoneinfo || exit 1; \
- for f in UTC $(ADK_RUNTIME_TIMEZONE); do \
- test -s "$$f" || continue; \
- tz=$$f; \
- done; if test x"$$tz" = x""; then \
- echo >&2 Error during timezone installation; \
- exit 1; \
- else \
- ln -sf "../usr/share/zoneinfo/$$tz" \
- $(IDIR_TZDATA)/etc/localtime; \
- fi
- include $(ADK_TOPDIR)/mk/pkg-bottom.mk
|