stargazing/build-all
2022-10-14 16:35:09 -07:00

64 lines
1.9 KiB
Bash
Executable File

#!/usr/bin/env sh
yes_retrieve() { : \
&& local ok=1 out= g= image="${1?missing argument}" && shift \
&& [ -d out ] && out="$(realpath out)" \
&& for f in "$@" \
;do g="out/${f##*/}" && { ! [ -e "$g" ] || mv "$g" "$g~" ;} || return \
;done \
&& podman run -v="$out":/out --rm --entrypoint /bin/busybox "$image" \
cp -- "$@" "/out/" \
&& for f in "$@" \
;do if g="out/${f##*/}" && [ -e "$g" ] \
;then ! [ -e "$g~" ] || rm "$g~" || return \
;else printf 'yes_retrieve: %s\n' "failed to copy file $f to $g"; ok=0 \
;fi ;done \
&& [ $ok = 1 ] \
;}
dbg_retrieve() { : \
&& local o=0 container="${1?missing argument}" && shift \
&& for f in "$@" \
;do [ $o = 0 ] && o=1 && set -- "$f" "$f.dbg" || set -- "$f" "$f.dbg" "$@" \
;done \
&& yes_retrieve "$container" "$@" \
;}
build() { : \
&& local t="${1?missing argument}" && shift \
&& printf >&2 ' \033[1m\033[7m <-- \033[0m\033[1m ' \
&& printf >&2 '%22sbuilding %-19s%13s' '' "$t" '' \
&& printf >&2 ' \033[1m\033[7m --> \033[0m\n' \
&& podman build -t "$t" "$t" "$@" \
;}
: \
&& me="$(readlink -f "$0")" && cd "${me%/*}" && { [ -d out ] || mkdir out ;} \
;: \
`# phase 1` \
&& build notwa-util \
`# phase 2` \
&& build cosmo-build \
`# phase 3` \
&& build cosmo-assimilate \
&& build cosmo-awk \
&& build cosmo-build-all \
&& build cosmo-dist \
&& build cosmo-make \
&& build cosmo-sed \
`# phase 4` \
&& build cosmo-base \
&& echo build cosmo-chibicc \
&& echo build cosmo-python \
&& echo build cosmo-quickjs \
&& echo build cosmo-sqlite \
&& echo build cosmo-unbourne \
`# phase 5` \
&& build cosmo-kuroko \
&& build cosmo-muon \
&& build cosmo-perl \
&& build cosmo-yices \
\
&& bin=/cosmopolitan/bin \
;