blob: 3d5ae43e965c47f00083eb0587d9ca7641a84a6f (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1 toolchain-funcs udev
DESCRIPTION="A program for controlling the MiniPRO TL866xx series of chip programmers"
HOMEPAGE="https://gitlab.com/DavidGriffith/minipro/"
if [[ ${PV} == "9999" ]]; then
EGIT_REPO_URI="https://gitlab.com/DavidGriffith/minipro.git"
inherit git-r3
else
SRC_URI="https://gitlab.com/DavidGriffith/minipro/-/archive/${PV}/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
DEPEND="
virtual/libusb:=
"
RDEPEND="${DEPEND}"
BDEPEND="
virtual/pkgconfig
"
src_compile()
{
emake CC=$(tc-getCC) PREFIX="${EPREFIX}/usr" COMPLETIONS_DIR="$(get_bashcompdir)"
}
src_install()
{
emake CC=$(tc-getCC) DESTDIR="${D}" PREFIX="${EPREFIX}/usr" COMPLETIONS_DIR="$(get_bashcompdir)" install
}
pkg_postinst()
{
udev_reload
}
pkg_postrm()
{
udev_reload
}
|