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,2 @@
DIST galasm-2.1_p20211123.tar.gz 65199 BLAKE2B fd3ca47267e8f9cb600bd368f8c1807f108d4dda64dab4003badb65b9e75786d2869d9f21082fff0e2a20d4c7a1414d8a7f9c07f0a2229f40371e44789386854 SHA512 738413329f06bb0c576814900d9f7275ba72b4adf34298d28be6ab609ff829cfae85140ac3d931d5b2d382236f90a8c99b5215bb19e072f0ae964bc9d7a32ddc
EBUILD galasm-2.1_p20211123.ebuild 592 BLAKE2B 3f0bb32713f9f5cf3138f2f550d70474610de94ee8814d3819a53be5da372d6d2202d3e373e82f1e4f4923d5e678f954892ca369e34b9605f11acd37b96b2690 SHA512 1abaf7a0bb75326ebe1722c2adc6bc47259e9dcc429b0f4b33cc70cd75d66966577f7f49c37172c5a95af2139a34045a3746e37c7d50d87b87291a39f09fac0c

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
}