This commit is contained in:
Mario Fetka
2022-03-01 11:46:08 +01:00
parent 961e7181bf
commit 1b10b30c02
89 changed files with 2191 additions and 3390 deletions

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
SHA="3e6c7a5e8b0cefe4128f4bdb2550209dc38b5756"
inherit bash-completion-r1 udev
DESCRIPTION="Portable GAL Assembler"
HOMEPAGE="https://github.com/daveho/GALasm"
SRC_URI="https://github.com/daveho/GALasm/archive/${SHA}.tar.gz -> ${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=""
DEPEND="${RDEPEND}"
S=${WORKDIR}/GALasm-${SHA}
src_compile() {
emake -C src
}
src_install() {
dobin src/galasm
HTML_DOCS=( "${S}"/galer/* )
dodoc -r examples
einstalldocs
}