Advertisement
Guest User

Untitled

a guest
Sep 19th, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. # Original Maintainer: James Duley <jagduley gmail>
  2. pkgname=gcc-arm-none-eabi-bin
  3. pkgver=4.9_2015_q2_update
  4. _pkgname=gcc-arm-none-eabi
  5. _pkgver=${pkgver//_/-}
  6. _pkgvershort=${_pkgver%-*}
  7. _pkgvershort=${_pkgvershort/-q/q}
  8. _pkgdate=20150609
  9. pkgrel=3
  10. pkgdesc="GNU Tools ARM Embedded Processors (binary distribution, includes GDB and newlib)"
  11. arch=('i686' 'x86_64')
  12. if [ "${CARCH}" = "x86_64" ]; then
  13. depends=('lib32-ncurses' 'lib32-glibc')
  14. else
  15. depends=('ncurses' 'glibc')
  16. fi
  17. provides=('gcc-arm-none-eabi'
  18. 'arm-none-eabi-gcc'
  19. 'arm-none-eabi-gdb'
  20. 'arm-none-eabi-binutils'
  21. 'arm-none-eabi-newlib'
  22. )
  23. conflicts=('gcc-arm-none-eabi'
  24. 'arm-none-eabi-gcc'
  25. 'arm-none-eabi-gdb'
  26. 'arm-none-eabi-binutils'
  27. 'arm-none-eabi-newlib'
  28. )
  29. url="https://launchpad.net/gcc-arm-embedded"
  30. source="https://launchpad.net/gcc-arm-embedded/${pkgver%%_*}/${_pkgver}/+download/${_pkgname}-${_pkgvershort/./_}-${_pkgdate}-linux.tar.bz2"
  31. license=('custom')
  32. options=(!strip staticlibs)
  33. md5sums=('6d5e1ae27607bab87bd324c9be2df17a')
  34.  
  35. package() {
  36. mkdir -p $pkgdir/usr
  37. cd $srcdir/gcc-*
  38. cp -a * $pkgdir/usr
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement