mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 05:52:19 +01:00
Automated: initialized with version 2014.09-1
This commit is contained in:
commit
f4f25d1cfa
2 changed files with 51 additions and 0 deletions
18
.SRCINFO
Normal file
18
.SRCINFO
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
pkgbase = crosstool-ng-linaro
|
||||
pkgdesc = crosstool-NG aims at building toolchains (Linaro source)
|
||||
pkgver = 2014.09
|
||||
pkgrel = 1
|
||||
url = http://linaro.org
|
||||
arch = any
|
||||
license = GPL
|
||||
makedepends = flex
|
||||
makedepends = bison
|
||||
depends = ncurses
|
||||
depends = make
|
||||
provides = crosstool-ng
|
||||
conflicts = crosstool-ng
|
||||
source = http://releases.linaro.org/14.09/components/toolchain/binaries/crosstool-ng-linaro-1.13.1-4.9-2014.09.tar.bz2
|
||||
md5sums = 8a01fde555f1127885b16b55793cfb65
|
||||
|
||||
pkgname = crosstool-ng-linaro
|
||||
|
||||
33
PKGBUILD
Normal file
33
PKGBUILD
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Maintainer: Ivan Shapovalov <intelfx100@gmail.com>
|
||||
|
||||
pkgname=crosstool-ng-linaro
|
||||
pkgver=2014.09
|
||||
pkgrel=1
|
||||
pkgdesc="crosstool-NG aims at building toolchains (Linaro source)"
|
||||
arch=('any')
|
||||
url="http://linaro.org"
|
||||
license=('GPL')
|
||||
depends=('ncurses' 'make')
|
||||
makedepends=('flex' 'bison')
|
||||
provides=('crosstool-ng')
|
||||
conflicts=('crosstool-ng')
|
||||
|
||||
_crosstool_ng_ver="1.13.1"
|
||||
_gcc_ver="4.9"
|
||||
|
||||
source=("http://releases.linaro.org/14.09/components/toolchain/binaries/${pkgname}-${_crosstool_ng_ver}-${_gcc_ver}-${pkgver}.tar.bz2")
|
||||
md5sums=('8a01fde555f1127885b16b55793cfb65')
|
||||
|
||||
build () {
|
||||
cd "${pkgname}-${_crosstool_ng_ver}-${_gcc_ver}-${pkgver}"
|
||||
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package () {
|
||||
cd "${pkgname}-${_crosstool_ng_ver}-${_gcc_ver}-${pkgver}"
|
||||
|
||||
make DESTDIR="$pkgdir" install
|
||||
install -Dm644 ct-ng.comp "$pkgdir/etc/bash_completion.d/ct-ng"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue