void-packages/srcpkgs/binutils/template
Juan RP a269411fbe binutils: remove /usr/lib64, it's owned by xbps-base-files. Bumprev.
--HG--
extra : convert_revision : eb58bf8258c63563cba76275e74a7dc9f6e8457f
2010-01-27 02:16:31 +01:00

45 lines
1.5 KiB
Plaintext

# Template file for 'binutils'
pkgname=binutils
version=2.20
revision=2
distfiles="http://ftp.gnu.org/gnu/binutils/$pkgname-$version.tar.bz2"
build_style=gnu_configure
configure_args="--enable-shared --enable-64-bit-bfd --disable-multilib
--enable-plugins --enable-secureplt --with-mmap --with-gnu-ld"
make_install_args="tooldir=/usr"
short_desc="GNU binary utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=e1df09f0aa3b50154ef93bfefe86d65d01c22cfb44d73299ad95e772133a75b0
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."
base_chroot=yes
subpackages="$pkgname-devel"
Add_dependency run glibc
Add_dependency run zlib
pre_install()
{
if [ "$xbps_machine" = "x86_64" ]; then
mkdir -vp ${SRCPKGDESTDIR}/usr/lib
cd ${SRCPKGDESTDIR}/usr && ln -sv lib lib64 && cd ${wrksrc}
fi
}
post_install()
{
# Remove info file that conflicts with autoconf.
rm -f ${DESTDIR}/usr/share/info/standards.info
rm -f ${DESTDIR}/usr/lib64
}