Files
gentoo/dev-java/mill-bin/mill-bin-0.11.6.ebuild
Florian Schmaus e8d77ea526 dev-java/mill-bin: add 0.11.6
Signed-off-by: Florian Schmaus <flow@gentoo.org>
2024-01-09 16:52:17 +01:00

27 lines
482 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN=${PN%-bin}
DESCRIPTION="A Java/Scala build tool"
HOMEPAGE="https://com-lihaoyi.github.io/mill/"
SRC_URI="https://github.com/com-lihaoyi/${MY_PN}/releases/download/${PV}/${PV}-assembly -> ${P}"
KEYWORDS="~amd64 ~x86"
LICENSE="MIT"
SLOT="0"
RDEPEND=">=virtual/jre-1.8:*"
S="${WORKDIR}"
src_unpack() {
:
}
src_install() {
newbin "${DISTDIR}"/${P} ${MY_PN}
}