blob: 28b6629f4744d6af37403c45f4484b9dac9a5d6f (
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
|
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Binaryen is a compiler and toolchain infrastructure library for WebAssembly"
HOMEPAGE="https://github.com/WebAssembly/binaryen"
SRC_URI="https://github.com/WebAssembly/${PN}/archive/refs/tags/version_${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-version_${PV}"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure()
{
local mycmakeargs=("-DBUILD_TESTS=OFF"
"-DENABLE_WERROR=OFF")
cmake_src_configure
}
|