blob: 9080e406084f6ee9ce6d6475ef0251907be2bfce [file] [log] [blame]
# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=2
CROS_WORKON_PROJECT="chromiumos/third_party/rootdev"
inherit toolchain-funcs cros-workon
DESCRIPTION="Chrome OS root block device tool/library"
HOMEPAGE="http://www.chromium.org/"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~arm"
IUSE=""
src_configure() {
cros-workon_src_configure
}
src_compile() {
tc-getCC
emake || die
}
src_install() {
dodir /usr/bin
exeinto /usr/bin
doexe ${S}/rootdev
dodir /usr/lib
dolib.so librootdev.so*
dodir /usr/include/rootdev
insinto /usr/include/rootdev
doins rootdev.h
}