summaryrefslogtreecommitdiff
path: root/package/tzdata/Makefile
blob: 45c2b5fc7e6e8ffa74571199621e7d55b9ca4fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 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