24 lines
458 B
Bash
24 lines
458 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="6"
|
|
|
|
DESCRIPTION="VHDL 2008/93/87 simulator"
|
|
HOMEPAGE="http://ghdl.free.fr/"
|
|
SRC_URI="https://github.com/tgingold/ghdl/releases/download/v${PV}/ghdl-${PV}-x86_64-linux.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64"
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S=${WORKDIR}
|
|
|
|
src_install() {
|
|
cp -R "${S}"/* "${D}" || die "Install failed!"
|
|
}
|