#!/bin/sh -e pkg_dir=$1 make CC="${CC:-gcc}" LDFLAGS="$LDFLAGS -static" make DESTDIR="$1" install # Get rid of the sbin directory mv "$1/usr/sbin/zic" "$1/usr/bin/zic" rm -rf "$1/usr/sbin" rm -rf "${1:?}/etc" set -- africa asia australasia europe northamerica southamerica ./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 # The 'tzselect' script is not great by any means, but it will work with most # POSIX compatible shells, if not all. clsed '1c#!/bin/sh' "$pkg_dir/usr/bin/tzselect"