aboutsummaryrefslogtreecommitdiff
blob: d9689c41a856fd3b578beb0d39bc08c2767c11d2 (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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6

inherit eutils

MY_P=${PN%%-bin}-${PV}

DESCRIPTION="Project Lombok makes java a spicier language by adding 'handlers' that know how to build and compile simple, boilerplate-free, not-quite-java code."
HOMEPAGE="https://projectlombok.org/"
SRC_URI="https://projectlombok.org/downloads/${MY_P}.jar"
LICENSE="MIT"

SLOT="0"
KEYWORDS="~amd64 ~x86"

DEPEND=">=virtual/jdk-1.7"
RDEPEND=">=virtual/jre-1.7"

S="${WORKDIR}"

src_unpack() {
	:
}

src_install() {
	mkdir -p "${D}/usr/share/lombok" || die
	cp "${DISTDIR}/${MY_P}.jar" "${D}/usr/share/lombok/lombok.jar" || die
}