tkurbad-overlay/sci-electronics/minipro/minipro-9999.ebuild

41 lines
834 B
Bash
Raw Normal View History

2018-09-17 17:54:09 +02:00
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
2021-09-09 13:46:05 +02:00
EAPI=8
2018-09-17 17:54:09 +02:00
2021-06-24 15:01:29 +02:00
inherit bash-completion-r1 git-r3 udev
2018-09-17 17:54:09 +02:00
DESCRIPTION="A free and open TL866XX programmer"
2018-09-19 17:10:15 +02:00
HOMEPAGE="https://gitlab.com/DavidGriffith/minipro"
EGIT_REPO_URI="https://gitlab.com/DavidGriffith/minipro.git"
2018-09-17 17:54:09 +02:00
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
2021-01-03 00:26:52 +01:00
RDEPEND="virtual/libusb:1
virtual/pkgconfig"
2018-09-17 17:54:09 +02:00
DEPEND="${RDEPEND}"
2021-01-12 10:16:23 +01:00
src_prepare() {
2021-09-09 13:46:05 +02:00
eapply "${FILESDIR}/${P}-infoic.patch" || die
2021-06-24 15:01:29 +02:00
eapply "${FILESDIR}/${P}-voltages.patch" || die
2021-01-12 10:16:23 +01:00
default
}
2021-01-03 00:26:52 +01:00
src_compile() {
PREFIX=/usr emake || die
}
2018-09-17 17:54:09 +02:00
src_install() {
2018-09-19 17:10:15 +02:00
dobin ${PN}{,hex}
2019-07-12 14:06:44 +02:00
udev_dorules udev/60-${PN}.rules
udev_dorules udev/61-${PN}-{plugdev,uaccess}.rules
2018-09-17 17:54:09 +02:00
doman man/${PN}.1
dobashcomp bash_completion.d/${PN}
2020-12-29 00:45:08 +01:00
insinto /usr/share/minipro
2021-09-09 13:46:05 +02:00
doins {info,logic}ic.xml
2018-09-17 17:54:09 +02:00
}