2
0
Fork 0
gcc-arm-none-eabi-bin-92/PKGBUILD

40 lines
1.1 KiB
Bash

# Original Maintainer: James Duley <jagduley gmail>
pkgname=gcc-arm-none-eabi-bin
pkgver=4.9_2014_q4_major
_pkgname=gcc-arm-none-eabi
_pkgver=${pkgver//_/-}
_pkgvershort=${_pkgver%-*}
_pkgvershort=${_pkgvershort/-q/q}
_pkgdate=20141203
pkgrel=2
pkgdesc="GNU Tools ARM Embedded Processors (binary distribution, includes GDB and newlib)"
arch=('i686' 'x86_64')
if [ "${CARCH}" = "x86_64" ]; then
depends=('lib32-ncurses' 'lib32-glibc')
else
depends=('ncurses' 'glibc')
fi
provides=('gcc-arm-none-eabi'
'arm-none-eabi-gcc'
'arm-none-eabi-gdb'
'arm-none-eabi-binutils'
'arm-none-eabi-newlib'
)
conflicts=('gcc-arm-none-eabi'
'arm-none-eabi-gcc'
'arm-none-eabi-gdb'
'arm-none-eabi-binutils'
'arm-none-eabi-newlib'
)
url="https://launchpad.net/gcc-arm-embedded"
source="https://launchpad.net/gcc-arm-embedded/${pkgver%%_*}/${_pkgver}/+download/${_pkgname}-${_pkgvershort/./_}-${_pkgdate}-linux.tar.bz2"
license=('custom')
options=(!strip staticlibs)
md5sums=('74cc4f012699c171089e72832d95bf4c')
package() {
mkdir -p $pkgdir/usr
cd $srcdir/gcc-*
cp -a * $pkgdir/usr
}