[arch-commits] Commit in crosstool-ng (3 files)
Maxime Gauduin
alucryd at gemini.archlinux.org
Mon May 23 12:55:53 UTC 2022
Date: Monday, May 23, 2022 @ 12:55:53
Author: alucryd
Revision: 1210104
archrelease: copy trunk to community-x86_64
Added:
crosstool-ng/repos/
crosstool-ng/repos/community-x86_64/
crosstool-ng/repos/community-x86_64/PKGBUILD
(from rev 1210103, crosstool-ng/trunk/PKGBUILD)
----------+
PKGBUILD | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
Copied: crosstool-ng/repos/community-x86_64/PKGBUILD (from rev 1210103, crosstool-ng/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2022-05-23 12:55:53 UTC (rev 1210104)
@@ -0,0 +1,47 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Christian Pfeiffer <cpfeiffer at live dot de>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: jwwolf <jwwolf+arch at gmail.com>
+# Contributor: Bernhard Walle <bernhard at bwalle.de>
+
+pkgname=crosstool-ng
+pkgver=1.25.0
+pkgrel=1
+pkgdesc='A versatile (cross-)toolchain generator'
+arch=(x86_64)
+url=https://crosstool-ng.github.io/
+license=(GPL2)
+depends=(
+ git
+ gperf
+ help2man
+ lzip
+ ncurses
+ python
+ unzip
+)
+_tag=8fa98eeeff9bc53478d97ef722f366fea151ae64
+source=(git+https://github.com/crosstool-ng/crosstool-ng.git#tag=${_tag})
+b2sums=(SKIP)
+
+prepare() {
+ cd crosstool-ng
+ ./bootstrap
+}
+
+build() {
+ cd crosstool-ng
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib \
+ --with-bash-completion \
+ --with-ncurses
+ make
+}
+
+package() {
+ cd crosstool-ng
+ make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list