# Contributor: Vojtech Horky pkgname=cross-mipsel-linux-gnu-binutils _pkgname=binutils _target="mipsel-linux-gnu" pkgver=2.22 pkgrel=1 pkgdesc="A set of programs to assemble and manipulate binary and object files for the MIPS architecture" url="http://www.gnu.org/software/binutils/" arch=('i686' 'x86_64') license=('GPL') depends=('zlib') source=("ftp://ftp.gnu.org/gnu/binutils/${_pkgname}-${pkgver}.tar.bz2") _sysroot="/usr/lib/cross-${_target}" md5sums=('ee0f10756c84979622b992a4a61ea3f5') build() { cd ${srcdir}/${_pkgname}-${pkgver} ./configure \ "--prefix=${_sysroot}" \ "--bindir=/usr/bin" "--program-prefix=${_target}-" \ "--with-sysroot=${_sysroot}" \ "--target=${_target}" "--build=$CHOST" "--host=$CHOST" \ "--disable-nls" \ --with-gcc --with-gnu-as --with-gnu-ld \ --without-included-gettext make all } package() { cd ${srcdir}/${_pkgname}-${pkgver} make DESTDIR=${pkgdir} install msg "Removing duplicit files..." # remove these files as they are already in the system # (with native binutils) rm -Rf ${pkgdir}${_sysroot}/share/{man,info} # remove conflicting binaries find ${pkgdir}/usr/bin/ -type f -not -name 'mipsel-linux-gnu-*' -delete msg "Creating out-of-path executables..." # symlink executables to single directory with no-arch-prefix name mkdir -p ${pkgdir}/usr/bin/cross/${_target}/; cd ${pkgdir}/usr/bin/cross/${_target}/; for bin in ${pkgdir}/usr/bin/${_target}-*; do bbin=`basename "$bin"`; ln -s "/usr/bin/${bbin}" `echo "$bbin" | sed "s#^${_target}-##"`; done }