diff options
Diffstat (limited to 'pcr/crosstool-ng/PKGBUILD')
-rw-r--r-- | pcr/crosstool-ng/PKGBUILD | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/pcr/crosstool-ng/PKGBUILD b/pcr/crosstool-ng/PKGBUILD index 7b77166fe..e1d1de676 100644 --- a/pcr/crosstool-ng/PKGBUILD +++ b/pcr/crosstool-ng/PKGBUILD @@ -1,35 +1,38 @@ +# Maintainer (Arch): Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor (Arch): jwwolf <jwwolf+arch@gmail.com> +# Contributor (Arch): Bernhard Walle <bernhard@bwalle.de> # Maintainer: fauno <fauno@kiwwwi.com.ar> +# Maintainer: André Silva <emulatorman@parabola.nu> # Contributor: Márcio Silva <coadde@parabola.nu> -# Contributor: André Silva <emulatorman@parabola.nu> pkgname=crosstool-ng -pkgver=1.21.0 +pkgver=1.22.0 pkgrel=1.parabola1 pkgdesc='Versatile cross-toolchain generator, with Linux-libre kernel support' arch=('i686' 'x86_64') 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 ctng-libre.patch) prepare() { - cd $pkgname-$pkgver + cd $pkgname patch -Np1 -i ../ctng-libre.patch } build() { - cd $pkgname-$pkgver + cd $pkgname ./configure --prefix=/usr make } package() { - cd $pkgname-$pkgver + cd $pkgname make DESTDIR="$pkgdir" install install -Dm644 ct-ng.comp "$pkgdir"/usr/share/bash-completion/completions/ct-ng } -sha256sums=('67122ba42657da258f23de4a639bc49c6ca7fe2173b5efba60ce729c6cce7a41' +sha256sums=('d6338a9b33f9d972167049bbe76e88b1e9248466a53df08dcfe8bcfe849d8d83' '75e06ee8e4cb2629564604498796240cbe57219bd235cade6b6982b7b0836136') |