mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
36 lines
815 B
Bash
36 lines
815 B
Bash
# Maintainer: Alexander Foremny <alexanderforemny@gmail.com>
|
|
# Modified by OpenPogo
|
|
|
|
pkgbase=gcc
|
|
pkgname=('gcc' 'gcc-libs')
|
|
pkgver=4.2.1
|
|
pkgrel=3
|
|
pkgdesc='The GNU Compiler Collection'
|
|
arch=(arm)
|
|
license=(GPL LGPL custom)
|
|
url='http://gcc.gnu.org'
|
|
makedepends=(flex 'gcc>=3.4' 'gawk>=3.1.5' 'make>=3.80')
|
|
source=(http://openpogo.com/pkgsrc/core/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('4c4f0fc4c563a9dad47070d0b527c2f5')
|
|
options=('!libtool')
|
|
|
|
build() {
|
|
echo "Hi there."
|
|
}
|
|
|
|
package_gcc() {
|
|
depends=("gcc-libs==$pkgver-$pkgrel" 'binutils>=2.19.1' 'mpfr>=2.4.1' 'cloog-ppl>=0.15.3')
|
|
groups=(base-devel)
|
|
license=(GPL)
|
|
|
|
cp -R $srcdir/opt $pkgdir
|
|
}
|
|
|
|
package_gcc-libs() {
|
|
depends=()
|
|
groups=(base)
|
|
pkgdesc='Runtime libraries shipped by GCC for C and C++ languages'
|
|
license=(LGPL custom)
|
|
|
|
cp -R $srcdir/opt $pkgdir/
|
|
}
|