2008-10-21 03:09:29 +02:00
|
|
|
# Template file for 'binutils'
|
|
|
|
pkgname=binutils
|
2010-03-05 03:02:55 +01:00
|
|
|
version=2.20.1
|
2008-10-28 23:57:52 +01:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/binutils/$pkgname-$version.tar.bz2"
|
2008-10-21 03:09:29 +02:00
|
|
|
build_style=gnu_configure
|
2010-03-05 03:02:55 +01:00
|
|
|
configure_args="--enable-shared --enable-64-bit-bfd --enable-multilib
|
2010-01-27 02:16:31 +01:00
|
|
|
--enable-plugins --enable-secureplt --with-mmap --with-gnu-ld"
|
2009-03-18 10:02:43 +01:00
|
|
|
make_install_args="tooldir=/usr"
|
2008-10-21 03:09:29 +02:00
|
|
|
short_desc="GNU binary utilities"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2010-03-05 03:02:55 +01:00
|
|
|
checksum=228b84722d87e88e7fdd36869e590e649ab523a0800a7d53df906498afe6f6f8
|
2008-10-21 03:09:29 +02:00
|
|
|
long_desc="
|
|
|
|
The GNU binutils package contains essential tools to assemble, link and
|
|
|
|
manipulate binary and object files. They are often used with a compiler
|
|
|
|
and additional libraries for building software.
|
|
|
|
|
|
|
|
It includes the GNU linker, the portable GNU assembler, ar for modifying
|
|
|
|
archives (such as libraries), nm for listing symbols from object files,
|
|
|
|
objdump for displaying object file information, ranlib for generating
|
|
|
|
archive indexes, size for listing section sizes of object files,
|
|
|
|
strings for outputing the printable characters in files, strip for
|
|
|
|
stripping out symbols (like debugging information) from object files,
|
|
|
|
and other tools."
|
2008-10-27 07:42:40 +01:00
|
|
|
|
|
|
|
base_chroot=yes
|
2009-11-22 08:31:44 +01:00
|
|
|
subpackages="$pkgname-devel"
|
2009-02-24 07:13:11 +01:00
|
|
|
Add_dependency run glibc
|
2009-12-19 04:56:14 +01:00
|
|
|
Add_dependency run zlib
|
2009-10-18 08:11:54 +02:00
|
|
|
|
2009-10-18 12:28:15 +02:00
|
|
|
pre_install()
|
|
|
|
{
|
|
|
|
if [ "$xbps_machine" = "x86_64" ]; then
|
2009-10-18 13:17:12 +02:00
|
|
|
mkdir -vp ${SRCPKGDESTDIR}/usr/lib
|
2009-10-18 13:45:17 +02:00
|
|
|
cd ${SRCPKGDESTDIR}/usr && ln -sv lib lib64 && cd ${wrksrc}
|
2009-10-18 12:28:15 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2009-10-18 08:11:54 +02:00
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
# Remove info file that conflicts with autoconf.
|
|
|
|
rm -f ${DESTDIR}/usr/share/info/standards.info
|
2010-01-27 02:16:31 +01:00
|
|
|
rm -f ${DESTDIR}/usr/lib64
|
2009-10-18 08:11:54 +02:00
|
|
|
}
|