mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
67 lines
2.0 KiB
Bash
67 lines
2.0 KiB
Bash
pkgname=binutils-avr
|
|
pkgver=2.21.1
|
|
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.1-5' 'zlib')
|
|
options=('!libtool' '!distcc' '!ccache')
|
|
source=(http://ftp.gnu.org/gnu/${pkgname/-avr}/${pkgname/-avr}-${pkgver}.tar.bz2)
|
|
md5sums=('a22801a9cad45c85e9ff6afc10537d72')
|
|
|
|
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
|
|
}
|
|
|