summaryrefslogtreecommitdiff
path: root/dev-util/laminar/laminar-1.1-r0.ebuild
blob: 31afc9d4204e7e95dc9ea667a9388bb072e1052b (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
EAPI=6

inherit cmake-utils

DESCRIPTION="Lightweight and modular Continuous Integration service for Linux"
HOMEPAGE="http://laminar.ohwg.net/"
SRC_URI="https://github.com/ohwgiles/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
	https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.12/vue.min.js -> ${PN}-2.6.12-vue.min.js
	https://raw.githubusercontent.com/drudru/ansi_up/v4.0.4/ansi_up.js -> ${PN}-4.0.4-ansi_up.js
	https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js -> ${PN}-2.7.2-Chart.min.js"

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

DEPEND="
	dev-libs/capnproto
	dev-libs/rapidjson
	dev-db/sqlite
	dev-libs/boost
"
RDEPEND="${DEPEND}
	acct-user/build
"

src_unpack() {
	# Note that ${A} contains also other files so no general unpack
	unpack "${P}.tar.gz"
}

# Note: lamianr build system in default downloads external files but that is not
# possible in sandbox because of . This downloads those files outside of
# scripts and copies them to correct place before configure which prevents from
# download happening/failing.
src_configure() {
	local BUILD_DIR="${WORKDIR}/${P}_build"
	mkdir -p ${BUILD_DIR}/js
	cat "${DISTDIR}/${PN}-2.6.12-vue.min.js" > "${BUILD_DIR}/js/vue.min.js"
	cat "${DISTDIR}/${PN}-3.4.8-vue-router.min.js" > "${BUILD_DIR}/js/vue-router.min.js"
	cat "${DISTDIR}/${PN}-4.0.4-ansi_up.js" > "${BUILD_DIR}/js/ansi_up.js"
	cat "${DISTDIR}/${PN}-2.7.2-Chart.min.js" > "${BUILD_DIR}/js/Chart.min.js"

	cmake-utils_src_configure
}

src_install() {
	cmake-utils_src_install
	newinitd "${FILESDIR}/laminar.init" laminar
}