CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
util-linux: fixed source
[ports/core-arm.git] / binutils / Pkgfile
... / ...
CommitLineData
1# Description: The GNU Binutils are a collection of binary tools
2# URL: http://sources.redhat.com/binutils/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Depends on: zlib
6
7name=binutils
8version=2.23.1
9release=1
10source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
11
12build() {
13 mkdir build
14 cd build
15 ../$name-$version/configure --prefix=/usr \
16 --build=arm-unknown-linux-gnueabihf \
17 --mandir=/usr/man \
18 --enable-shared \
19 --disable-nls
20 make tooldir=/usr
21 make check
22 make tooldir=/usr DESTDIR=$PKG install
23 install -m 0644 ../$name-$version/include/libiberty.h $PKG/usr/include
24 rm -r $PKG/usr/share
25 sed -i "s|-L$SRC[^ ]* ||g" $PKG/usr/lib/libbfd.la
26}