Files
guru/sci-electronics/yosys/yosys-0.57.ebuild
2025-09-18 00:27:52 +08:00

32 lines
604 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="framework for Verilog RTL synthesis"
HOMEPAGE="http://www.clifford.at/yosys/"
SRC_URI="
https://github.com/YosysHQ/${PN}/releases/download/v${PV}/yosys.tar.gz -> ${P}.tar.gz
"
S="${WORKDIR}"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-libs/boost
media-gfx/xdot
llvm-core/clang
"
DEPEND="${RDEPEND}"
BDEPEND="dev-vcs/git"
src_configure() {
cat <<-__EOF__ >> Makefile.conf || die
PREFIX := ${EPREFIX}/usr
STRIP := @echo "skipping strip"
__EOF__
default
}