mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
16 lines
429 B
Bash
Executable File
16 lines
429 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
pkg_dir=$1
|
|
|
|
make
|
|
make DESTDIR="$pkg_dir" install
|
|
|
|
set -- africa antarctica asia australasia \
|
|
europe northamerica southamerica pacificnew \
|
|
etcetera backward systemv factory
|
|
|
|
./zic -d "${pkg_dir}/usr/share/zoneinfo" "$@"
|
|
./zic -d "${pkg_dir}/usr/share/zoneinfo/posix" "$@"
|
|
./zic -d "${pkg_dir}/usr/share/zoneinfo/right" -L leapseconds "$@"
|
|
./zic -d "${pkg_dir}/usr/share/zoneinfo" -p America/New_York
|