mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +01:00
Add time zone data
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
3e75dc1e37
commit
b4502eaf80
3 changed files with 1272 additions and 0 deletions
37
pkg/tzdata/build
Normal file
37
pkg/tzdata/build
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
VERSION="2018e"
|
||||||
|
SRCDIR="tzdb-${VERSION}"
|
||||||
|
TARBALL="${SRCDIR}.tar.xz"
|
||||||
|
URL="http://infraroot.at/pygos"
|
||||||
|
SHA256SUM="631483305442e5dd1a2a21cefc9b7e4eda4af9c6f862ad3cad9dc14541213b51"
|
||||||
|
DEPENDS="toolchain"
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
sed -i 's/sbin/bin/g' Makefile
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cp -r ${1}/* ${PKGBUILDDIR}
|
||||||
|
make -j $NUMJOBS
|
||||||
|
}
|
||||||
|
|
||||||
|
deploy() {
|
||||||
|
local SOURCE="$1"
|
||||||
|
local DEPLOY="$2"
|
||||||
|
|
||||||
|
make USRDIR="" DESTDIR="$DEPLOY" install
|
||||||
|
cp "$SCRIPTDIR/pkg/$PKGNAME/rootfs_files.txt" "$DEPLOY"
|
||||||
|
|
||||||
|
sed -i 's@/usr@@g' "$DEPLOY/bin/tzselect"
|
||||||
|
rm "$DEPLOY/bin/zdump"
|
||||||
|
rm "$DEPLOY/bin/zic"
|
||||||
|
}
|
||||||
|
|
||||||
|
check_update() {
|
||||||
|
local version=$(echo $VERSION | sed 's/\([[:lower:]]\)/.\1/g')
|
||||||
|
local url="https://data.iana.org/time-zones/releases"
|
||||||
|
|
||||||
|
curl --silent -L "$url" | grep -o "tzdb-[0-9a-z]*\.tar\.lz" | \
|
||||||
|
sed 's/tzdb-//g' | sed 's/.tar.lz//g' | sort -u | \
|
||||||
|
sed 's/\([[:lower:]]\)/.\1/g' | \
|
||||||
|
verson_find_greatest "$version"
|
||||||
|
}
|
1234
pkg/tzdata/rootfs_files.txt
Normal file
1234
pkg/tzdata/rootfs_files.txt
Normal file
File diff suppressed because it is too large
Load diff
|
@ -24,3 +24,4 @@ openssh
|
||||||
ldns
|
ldns
|
||||||
tcpdump
|
tcpdump
|
||||||
ntp
|
ntp
|
||||||
|
tzdata
|
||||||
|
|
Loading…
Reference in a new issue