Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 21 lines (16 sloc) 448 Bytes
#!/bin/env beesh
# BEE_VERSION binutils-2.41-0
# SRCURL="https://ftp.gnu.org/gnu/binutils/binutils-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/256d7e0ad998e423030c84483a7c1e30/binutils-2.41.tar.xz"
mee_configure() {
bee_configure \
--enable-shared \
--disable-nls
}
mee_check() {
make check 2>&1 | tee check.log
}
mee_install() {
bee_install
cp -v ${S}/include/libiberty.h ${D}/usr/include
}