blob: dc90c933a62276c9216497c5a9d441406840d885 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
EGIT_REPO_URI="git://www.aleph1.co.uk/yaffs2"
EGIT_SOURCEDIR=${WORKDIR}
inherit eutils git-2 toolchain-funcs
DESCRIPTION="tools for generating YAFFS images"
HOMEPAGE="http://www.aleph1.co.uk/yaffs/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
S=${WORKDIR}/utils
src_prepare() {
epatch "${FILESDIR}"/${P}-build.patch
tc-export CC
}
src_install() {
dobin mkyaffsimage mkyaffs2image
dodoc ../README-linux
}
|