blob: 6003e3e48837dbe90d03ab3a8a6b29ce28e98e7e (
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
|
DESCRIPTION="binutils 2.13 from FSF"
LICENSE="GPL"
RDEPEND=""
DEPEND=""
PROVIDES="virtual/${ARCH}-${OS}-binutils"
SRC_URI="ftp://ftp.gnu.org/pub/gnu/binutils/binutils-2.13.2.tar.gz"
S = ${WORKDIR}/binutils-${PV}
OLDOS := ${OS}
OLDARCH := ${ARCH}
CROSS_DIR := ${CROSS_DIR}
inherit noncross autotools
do_configure() {
./configure --prefix=${CROSS_DIR} --target=${OLDARCH}-${OLDOS}
}
EXTRA_OEMAKE =
do_compile() {
oe_runmake
}
do_install() {
oe_runmake install
}
|