summaryrefslogtreecommitdiffstats
path: root/binutils/Pkgfile
blob: 01158f85924cbdf97220aeea31fb2e224969127f (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
28
29
30
31
# Description: Le paquet GNU Binutils est une collection d'outils 
# URL: http://sources.redhat.com/binutils/
# Maintainer: Tristan Gingold, Alan Modra, etc gingold at adacore dot com amodra at bigpond dot net dot au
# Packager: thierryn1 at hispeed dot ch

name=binutils
version=2.22
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)

build() {
	cd $name-$version

	rm -fv etc/standards.info
	sed -i.bak '/^INFO/s/standards.info //' etc/Makefile.in

	mkdir ../binutils-build
	cd ../binutils-build
	../binutils-$version/configure --prefix=/usr \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--enable-shared

	make tooldir=/usr
	make -k check||true
	make tooldir=/usr DESTDIR=$PKG install

	cp ../$name-$version/include/libiberty.h $PKG/usr/include
	rm $PKG/usr/share/info/dir
	sed -i "s|-L$SRC[^ ]* ||g" $PKG/usr/lib/libbfd.la
}