blob: 4f7f563c355f7b7ffa9b277dd3fb44019ff3961f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PN=${P#-bin}
MY_P=${MY_PN}-${PV}
DESCRIPTION="A sophisticated build-tool for Erlang projects that follows OTP principles"
HOMEPAGE="https://github.com/erlang/rebar3"
SRC_URI="https://github.com/erlang/rebar3/releases/download/${PV}/rebar3 -> ${P}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-lang/erlang"
DEPEND=""
S="${WORKDIR}"
QA_PREBUILT="/usr/bin/rebar3"
src_unpack() {
cp -v "${DISTDIR}/${P}" "${S}/rebar3" || die
}
src_install() {
dobin rebar3
}
|