blob: 85a2fcd8d015c4d6b5c4cc23fc51536c54514d28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
inherit eutils git-2
DESCRIPTION="A free and open TL866XX programmer"
HOMEPAGE="https://github.com/vdudouyt/minipro"
EGIT_REPO_URI="https://github.com/vdudouyt/minipro.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="virtual/libusb:1"
DEPEND="${RDEPEND}"
src_install() {
dobin minipro
dobin minipro-query-db
dobin miniprohex
insinto /lib/udev/rules.d
doins udev/rules.d/80-minipro.rules
doman man/minipro.1
}
|