void-packages/srcpkgs/rebar3/template
Noel Cower c098e4e9fc rebar3: update to 3.7.5.
In addition, adds the license, sample config (which rebar3 will
generate anyway), and manpage.
2018-12-12 08:20:28 -02:00

23 lines
561 B
Bash

# Template file for 'rebar3'
pkgname=rebar3
version=3.7.5
revision=1
noarch=yes
hostmakedepends=erlang
depends=erlang
short_desc="Erlang build tool to compile, test, and release applications"
maintainer="Noel Cower <ncower@gmail.com>"
license="Apache-2.0"
homepage="https://www.rebar3.org/"
distfiles="https://github.com/erlang/rebar3/archive/${version}.tar.gz"
checksum=46d9991c8af1dc85a1de8edc6618c3e6dc9c3de60c67e8139a98d2e4c2d047ad
do_build() {
./bootstrap
}
do_install() {
vbin rebar3
vsconf rebar.config.sample rebar.config
vman manpages/rebar3.1
}