diff options
author | root <root@rshg054.dnsready.net> | 2011-12-05 23:15:23 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-05 23:15:23 +0000 |
commit | 55d1e19e71b453a0f47c599f281a2ad2644247d2 (patch) | |
tree | e4988a18e52a5f283c69611807002a1a20c918ed /community-testing/binutils-avr | |
parent | 392d2d86b3657d90c3954a44dd6e3e5a4d12d455 (diff) |
Mon Dec 5 23:15:23 UTC 2011
Diffstat (limited to 'community-testing/binutils-avr')
-rw-r--r-- | community-testing/binutils-avr/PKGBUILD | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/community-testing/binutils-avr/PKGBUILD b/community-testing/binutils-avr/PKGBUILD new file mode 100644 index 000000000..1dfbbe0d7 --- /dev/null +++ b/community-testing/binutils-avr/PKGBUILD @@ -0,0 +1,72 @@ +# $Id: PKGBUILD 60056 2011-12-04 14:59:45Z jelle $ +# Maintainer: Brad Fanella <bradfanella@archlinux.us> +# Contributor: Corrado Primier <bardo@aur.archlinux.org> +# Contributor: danst0 <danst0@west.de> + +pkgname=binutils-avr +pkgver=2.22 +pkgrel=1 +pkgdesc="A set of programs to assemble and manipulate binary and object files for the avr architecture" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/binutils/" +license=('GPL') +depends=('glibc>=2.12-5' 'zlib') +options=('!libtool' '!distcc' '!ccache') +source=(http://ftp.gnu.org/gnu/${pkgname/-avr}/${pkgname/-avr}-${pkgver}.tar.bz2{,.sig}) +md5sums=('ee0f10756c84979622b992a4a61ea3f5' + '6aea2485019497583e5c3f5fc4a39cd5') + +build() { + cd ${srcdir}/${pkgname/-avr}-${pkgver} + + mkdir build + cd build + + CC="gcc -L$(pwd)/bfd/.libs/" + if [ "${CARCH}" = "x86_64" ]; then + ../configure --build=$(../config.guess) \ + --disable-multilib \ + --disable-nls \ + --enable-64-bit-bfd \ + --enable-install-libbfd \ + --includedir=/usr/$(../config.guess)/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --mandir=/usr/share/man \ + --prefix=/usr \ + --target=avr + else + ../configure --build=$(../config.guess) \ + --disable-nls \ + --enable-install-libbfd \ + --includedir=/usr/$(../config.guess)/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --mandir=/usr/share/man \ + --prefix=/usr \ + --target=avr + fi + + # This checks the host environment and makes sure all the necessary tools are available to compile Binutils. + make configure-host + + make tooldir=/usr +} + +package() { + cd ${srcdir}/${pkgname/-avr}-${pkgver} + + cd build + make DESTDIR=${pkgdir} tooldir=/usr install + + rm -f ${pkgdir}/usr/lib/libiberty.a + + for bin in addr2line ar as c++filt gprof ld nm objcopy objdump ranlib readelf size strings strip ; do + rm -f ${pkgdir}/usr/bin/${bin} || return 1 + done + + for info in as bfd binutils configure gprof ld standards; do + mv ${pkgdir}/usr/share/info/${info}.info ${pkgdir}/usr/share/info/avr-${info}.info + done +} + |