blob: 73f77fd8d23af0af0bd7528c1c208c85e83d515c (
plain) (
tree)
|
|
#!/usr/bin/env sh
make_icon() {
render_icon() {
input="${1}"
width="${2}"
output="${3}"
printf "rendering icon at \"%s\" as %ipx by %ipx to \"%s\"\n" "${input}" ${width} ${width} "${output}"
inkscape -w ${width} -h ${width} "${input}" -o "${output}"
}
input="${1}"
directory="$(mktemp -d)"
render_icon "${input}" 16 "${directory}/16x16.png"
render_icon "${input}" 24 "${directory}/24x24.png"
render_icon "${input}" 32 "${directory}/32x32.png"
render_icon "${input}" 48 "${directory}/48x48.png"
render_icon "${input}" 64 "${directory}/64x64.png"
render_icon "${input}" 96 "${directory}/96x96.png"
render_icon "${input}" 128 "${directory}/128x128.png"
render_icon "${input}" 192 "${directory}/192x192.png"
render_icon "${input}" 256 "${directory}/256x256.png"
printf "combining renders in \"%s\" to \"%s\"\n" "${directory}" "${output}"
icotool -co "favicon.ico" "${directory}/"*".png"
render_icon "${input}" 180 "apple-touch-icon.png"
}
make_stylesheet() {
input="css/${1}.scss"
output="css/${1}.css"
printf "making stylesheet at \"%s\"...\n" "${output}"
sass --no-source-map --style=compressed "${input}" "${output}"
}
make_script() {
input="js/${1}.ts"
output="js/${1}.js"
printf "making script at \"%s\"...\n" "${output}"
tsc --outFile "${output}" --target ES2022 "${input}"
}
make_icon "svg/achernar-icon.svg"
make_stylesheet "main"
make_stylesheet "noScript"
make_script "init"
|