blob: 6568d2006a75f8c54cad32b552b5e0a8bc423184 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Crosstool-NG aims at building toolchains."
HOMEPAGE="http://crosstool-ng.github.io/"
SRC_URI="http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-$PV.tar.bz2"
LICENSE="GPLv2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="$(readlink -f "${D}")" install
einstalldocs
}
|