core/binutils/Pkgfile

24 lines
742 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: The GNU Binutils are a collection of binary tools
# URL: http://sources.redhat.com/binutils/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=binutils
2008-10-27 19:09:25 +01:00
version=2.19
2006-02-23 16:26:10 +01:00
release=1
2008-10-27 19:09:25 +01:00
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build() {
2008-10-02 13:53:24 +02:00
sed -i '/^SUBDIRS/s/doc//' $name-$version/bfd/Makefile.in
2006-02-23 16:26:10 +01:00
mkdir build
cd build
../$name-$version/configure --prefix=/usr \
2007-08-30 10:05:49 +02:00
--enable-shared \
--disable-nls
2006-02-23 16:26:10 +01:00
make tooldir=/usr
make check
make tooldir=/usr DESTDIR=$PKG install
cp ../$name-$version/include/libiberty.h $PKG/usr/include
rm -rf $PKG/usr/info
sed -i "s|-L$SRC[^ ]* ||g" $PKG/usr/lib/libbfd.la
}