Skip to content
Permalink
Newer
Older
100755 23 lines (17 sloc) 426 Bytes
June 6, 2016 09:50
1
#!/bin/env beesh
April 18, 2018 14:32
2
# BEE_VERSION binutils-2.30-0
June 6, 2016 09:50
3
April 18, 2018 14:32
4
SRCURL="https://ftp.gnu.org/gnu/binutils/binutils-${PKGVERSION}.tar.xz"
June 6, 2016 09:50
5
6
#set -x
7
8
mee_patch_post() {
9
rm -fv etc/standards.info
10
sed -i.bak '/^INFO/s/standards.info //' etc/Makefile.in
11
}
12
13
mee_configure() {
14
bee_configure --enable-shared
15
}
16
17
mee_check() {
18
make check 2>&1 | tee check.log
19
}
20
21
mee_install_post() {
22
cp -v ${S}/include/libiberty.h ${D}/usr/include
23
}