23 lines
555 B
Bash
23 lines
555 B
Bash
# Template file for 'rebar3'
|
|
pkgname=rebar3
|
|
version=3.14.4
|
|
revision=2
|
|
hostmakedepends=erlang
|
|
depends="erlang>=22"
|
|
short_desc="Erlang build tool to compile, test, and release applications"
|
|
maintainer="Noel Cower <ncower@nil.dev>"
|
|
license="Apache-2.0"
|
|
homepage="https://www.rebar3.org/"
|
|
distfiles="https://github.com/erlang/rebar3/archive/${version}.tar.gz"
|
|
checksum=8d78ed53209682899d777ee9443b26b39c9bf96c8b081fe94b3dd6693077cb9a
|
|
|
|
do_build() {
|
|
./bootstrap
|
|
}
|
|
|
|
do_install() {
|
|
vbin rebar3
|
|
vsconf rebar.config.sample rebar.config
|
|
vman manpages/rebar3.1
|
|
}
|