forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
solidity-0.4.2.ebuild
38 lines (28 loc) · 1007 Bytes
/
solidity-0.4.2.ebuild
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
32
33
34
35
36
37
38
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="The Solidity Contract-Oriented Programming Language"
HOMEPAGE="https://github.com/ethereum/solidity"
SRC_URI="https://github.com/ethereum/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/jsoncpp:=
dev-libs/boost:=
"
RDEPEND="${DEPEND}"
src_prepare() {
default
# The build won't work without this file but it is missing from
# the release tarball.
#
# Reported upstream: https://github.com/ethereum/solidity/issues/1183
cp "${FILESDIR}"/${P}-commit_hash.txt "${S}"/commit_hash.txt || die "Could not copy commit hash"
# Without this file the build is marked as a developer version
# but it is missing from the release tarball.
#
# Reported upstream: https://github.com/ethereum/solidity/issues/1183
touch "${S}"/prerelease.txt || die "Could not mark as release version"
}