Archived
3
0
This repository has been archived on 2022-01-17. You can view files and clone it, but cannot push or open issues or pull requests.
packaging/project.zsh

38 lines
769 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package=packaging
version=0.9.3
variables+=(
LIBEXECDIR '$(PREFIX)/libexec'
SYSCONFDIR '$(PREFIX)/etc'
VERSION "$version"
)
targets=(packaging assemble-apk.sh)
type[packaging]=crystal
sources[packaging]=src/main.cr
depends[packaging]="$(echo src/*.cr | sed 's| src/config.cr||') src/config.cr"
type[assemble-apk.sh]=script
targets+=(src/config.cr)
type[src/config.cr]=script
sources[src/config.cr]=src/config.cr.in
auto[src/config.cr]=true # Dont display it in `make help`.
install[src/config.cr]=false
# FIXME: Clean and upstream this.
function script.install {
if [[ false == "${install[$target]}" ]]; then
write "$target.install:"
write "\t${Q}:"
write
else
binary.install "$@"
fi
}
install[assemble-apk.sh]='$(LIBEXECDIR)/packaging'