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
2019-08-29 16:10:15 +02:00

38 lines
757 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=package
version=0.5.0
variables+=(
LIBEXECDIR '$(PREFIX)/libexec'
SYSCONFDIR '$(PREFIX)/etc'
VERSION "$version"
)
targets=(package assemble-apk.sh)
type[package]=crystal
sources[package]=src/main.cr
depends[package]="$(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)/package'