diff options
Diffstat (limited to 'pcr/crosstool-ng')
-rw-r--r-- | pcr/crosstool-ng/PKGBUILD | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/pcr/crosstool-ng/PKGBUILD b/pcr/crosstool-ng/PKGBUILD index 16c78089b..261cf1a37 100644 --- a/pcr/crosstool-ng/PKGBUILD +++ b/pcr/crosstool-ng/PKGBUILD @@ -1,39 +1,45 @@ # Maintainer (Arch): Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor (Arch): jwwolf <jwwolf+arch@gmail.com> # Contributor (Arch): Bernhard Walle <bernhard@bwalle.de> -# Maintainer: André Silva <emulatorman@hyperbola.info> # Maintainer: fauno <fauno@kiwwwi.com.ar> +# Contributor: André Silva <emulatorman@hyperbola.info> # Contributor: Márcio Silva <coadde@hyperbola.info> # Contributor: Josh Branning <lovell.joshyyy@gmail.com> +# parabola changes and rationale: +# - add linux-libre kernel support +# - corrected license + pkgname=crosstool-ng -pkgver=1.22.0 -pkgrel=1.parabola2 -pkgdesc='Versatile cross-toolchain generator, with Linux-libre kernel support' -arch=('i686' 'x86_64') +pkgver=1.23.0 +pkgrel=1.parabola1 +pkgdesc='Versatile (cross-)toolchain generator, with Linux-libre kernel support' +arch=('i686' 'x86_64' 'armv7h') url='http://crosstool-ng.org/' license=('GPL2') depends=('make' 'gperf' 'wget') makedepends=('help2man') options=('!makeflags') -source=(http://crosstool-ng.org/download/$pkgname/$pkgname-$pkgver.tar.bz2 +source=("http://crosstool-ng.org/download/$pkgname/$pkgname-$pkgver.tar.bz2" ctng-libre.patch) +md5sums=('dc861702ecce216d1855c8185f0f1873' + '83658f8044ca95b1670860ff18865033') +sha256sums=('1b76404960f2b35471b6385ba707b8a4712431820fe30063e435dad97ccb02b4' + '36070c7691a150068ab47f01ba59716a1ffc69a08d88347f30c5d60c416adcfc') prepare() { - cd $pkgname + cd "$pkgname-$pkgver" patch -Np1 -i ../ctng-libre.patch } build() { - cd $pkgname + cd "$pkgname-$pkgver" ./configure --prefix=/usr make } package() { - cd $pkgname + cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install install -Dm644 ct-ng.comp "$pkgdir"/usr/share/bash-completion/completions/ct-ng } -sha256sums=('d6338a9b33f9d972167049bbe76e88b1e9248466a53df08dcfe8bcfe849d8d83' - '36070c7691a150068ab47f01ba59716a1ffc69a08d88347f30c5d60c416adcfc') |