blob: ac82d2d9f3974dd168bc899e5ee674ece6195c92 (
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
51
52
53
54
55
56
57
58
59
60
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
cc@1.3.0
find-msvc-tools@0.1.9
shlex@2.0.1
"
inherit cargo
DESCRIPTION="A compiler for the B Programming Language implemented in Crust"
HOMEPAGE="https://github.com/bext-lang/b"
GIT_COMMIT="078429a578202d8f6c4c667c780fc48f3711567f"
SRC_URI="
https://github.com/bext-lang/b/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz
${CARGO_CRATE_URIS}
"
S="${WORKDIR}/${PN}-${GIT_COMMIT}"
LICENSE="MIT"
# Dependent crate licenses
LICENSE+=" || ( Apache-2.0 MIT )"
SLOT="0"
KEYWORDS="~amd64"
src_prepare()
{
cp "${FILESDIR}/Cargo.toml" "${S}/" || die
cp "${FILESDIR}/Cargo.lock" "${S}/" || die
cp "${FILESDIR}/build.rs" "${S}/" || die
default
}
src_test()
{
mkdir -p build || die
cp target/debug/b build/b || die
cargo_src_compile --bin btest
einfo "Running btest matrix..."
./target/debug/btest || die "btest failed"
}
src_compile()
{
cargo_src_compile --bin bgen
einfo "Running bgen code generator..."
./target/debug/bgen || die "bgen execution failed"
cargo_src_compile --bin b
}
src_install()
{
cargo_src_install --bin b
}
|