You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
757 B
33 lines
757 B
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Tool for flashing Rockchip devices"
|
|
HOMEPAGE="https://sourceforge.net/projects/rkflashtool/"
|
|
SRC_URI="mirror://sourceforge/project/${PN}/${P}/${P}-src.tar.xz"
|
|
S="${WORKDIR}/${P}-src"
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="virtual/libusb:1"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
default
|
|
cp "${FILESDIR}"/${P}-missing-version.h version.h || die
|
|
sed -i -e "s/CC =/CC ?=/"\
|
|
-e "s/CFLAGS =/CFLAGS ?=/"\
|
|
-e "s/LDFLAGS =/LDFLAGS ?=/" Makefile || die
|
|
tc-export CC
|
|
}
|
|
|
|
src_install() {
|
|
dodoc README
|
|
dobin rkcrc rkflashtool rkmisc rkpad rkparameters rkparametersblock rkunpack rkunsign
|
|
}
|