forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bam-0.4.0-r1.ebuild
48 lines (38 loc) · 950 Bytes
/
bam-0.4.0-r1.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
39
40
41
42
43
44
45
46
47
48
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit eutils python-any-r1 toolchain-funcs
DESCRIPTION="Fast and flexible Lua-based build system"
HOMEPAGE="https://matricks.github.com/bam/"
SRC_URI="https://github.com/downloads/matricks/${PN}/${P}.tar.bz2"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc test"
RDEPEND="dev-lang/lua:="
DEPEND="${RDEPEND}
doc? ( ${PYTHON_DEPS} )
test? ( ${PYTHON_DEPS} )"
pkg_setup() {
if use doc || use test; then
python-any-r1_pkg_setup
fi
}
src_prepare() {
cp "${FILESDIR}"/${PV}/Makefile "${S}"/Makefile || die "cp failed"
epatch "${FILESDIR}"/${PV}/${P}-test.py.patch
tc-export CC
}
src_compile() {
emake ${PN}
if use doc; then
"${PYTHON}" scripts/gendocs.py || die "doc generation failed"
fi
}
src_install() {
dobin ${PN}
if use doc; then
dohtml docs/${PN}{.html,_logo.png}
fi
}