summaryrefslogtreecommitdiff
path: root/timezones/timezones_cvs.oe
blob: c47f4233063408d911add7383f007fbf0bd74590 (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
DESCRIPTION = "Timezone data"
SECTION = "base"
PRIORITY = "optional"
MAINTAINER = "Team Opie <opie@handhelds.org>"
LICENSE = "GPL"
PV = "1.1.6+cvs-${CVSDATE}"

SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/root"
S = "${WORKDIR}/root"

do_install() {
	for dir in `ls -1 usr/share/zoneinfo`
	do
		install -d ${D}/usr/share/zoneinfo/$dir
		
		for file in `find usr/share/zoneinfo/$dir/ -type f|grep -v CVS`
		do
			install -m 644 "$file" ${D}/usr/share/zoneinfo/$dir
		done
		
	done
}

FILES_${PN} = "usr/share/zoneinfo/[A-Z]*"