CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
pkg-get: removed port (FS#26)
[crossrootfs.git] / binutils / Pkgfile
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:
6
7 name=binutils
8 version=2.21.1
9 release=1
10 source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2 \
11 binutils-$version-gnueabihf.patch)
12
13 build() {
14 pushd $name-$version
15 patch -p1 -i $SRC/binutils-$version-gnueabihf.patch
16 popd
17 sed -i '/^SUBDIRS/s/doc//' $name-$version/bfd/Makefile.in
18 sed -i '/^# RELEASE=y/s/#//' $name-$version/bfd/Makefile.in
19 sed -i 's|really-check: check-cplus-dem check-pexecute check-expandargv|really-check:|g' -i $name-$version/libiberty/testsuite/Makefile.in
20 mkdir $SRC/build
21 cd $SRC/build
22
23 AR="ar" AS="as" \
24 $SRC/$name-$version/configure --build=$CHOST \
25 --host=$CTARGET \
26 --target=$CTARGET \
27 --prefix=/usr \
28 --mandir=/usr/man \
29 --enable-shared \
30 --disable-nls
31
32 make configure-host
33 make tooldir=/usr
34 make check
35 make tooldir=/usr DESTDIR=$PKG install
36
37 cp ../$name-$version/include/libiberty.h $PKG/usr/include
38 rm -r $PKG/usr/share
39 sed -i "s|-L$SRC[^ ]* ||g" $PKG/usr/lib/libbfd.la
40 }