28 lines
613 B
Bash
28 lines
613 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
MY_PV="v${PV}"
|
|
SRC_URI="https://github.com/linux-sunxi/sunxi-tools/archive/${MY_PV}.tar.gz"
|
|
|
|
DESCRIPTION="Tools for Allwinner A10 devices."
|
|
HOMEPAGE="http://linux-sunxi.org/"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
IUSE=""
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="virtual/libusb"
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -std=c99 -D_POSIX_C_SOURCE=200112L -Iinclude/" all misc
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin2fex bootinfo fel fex2bin fexc nand-part phoenix_info pio
|
|
}
|