PKGBUILDs/community/rust/PKGBUILD

91 lines
2.5 KiB
Bash
Raw Normal View History

2017-04-28 02:55:23 +00:00
# $Id$
# Maintainer: Johannes Löthberg <johannes@kyriasis.com>
# Contributor: Alexander F Rødseth <xyproto@archlinux.org>
# Contributor: Daniel Micay <danielmicay@gmail.com>
# Contributor: userwithuid <userwithuid@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - add a link to g++ to compensate for broken cross-compiler decisions
buildarch=28
2017-06-27 21:57:04 +00:00
highmem=1
2017-04-28 02:55:23 +00:00
pkgname=('rust' 'rust-docs')
epoch=1
2017-09-03 17:35:52 +00:00
pkgver=1.20.0
pkgrel=1
2017-04-28 02:55:23 +00:00
pkgdesc='Systems programming language focused on safety, speed and concurrency'
url='https://www.rust-lang.org/'
arch=('x86_64' 'i686')
license=('MIT' 'Apache')
2017-08-02 00:03:30 +00:00
makedepends=('rust' 'libffi' 'perl' 'python2' 'curl' 'llvm' 'cmake')
2017-04-28 02:55:23 +00:00
options=('!emptydirs')
2017-07-21 12:43:33 +00:00
source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
0001-librustc_llvm-build-Force-link-against-libffi.patch
bootstrap-config.toml)
2017-04-28 02:55:23 +00:00
2017-09-03 17:35:52 +00:00
sha256sums=('2aa4875ff4472c6e35262bbb9052cb2623da3dae6084a858cc59d36f33f18214'
2017-07-21 12:43:33 +00:00
'SKIP'
'563529da8e02f575ddde7247d5fc5350d74031daa54743b86d075f3c45ae2713'
2017-08-02 00:03:30 +00:00
'4252d4873a840216115ee306e4d689819bc791ee05bedd1faa0b00c49ff91c62')
2017-04-28 02:55:23 +00:00
validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag and Release Signing Key) <rust-key@rust-lang.org>
prepare() {
2017-07-21 12:43:33 +00:00
cd "rustc-$pkgver-src"
patch -p1 <"$srcdir"/0001-librustc_llvm-build-Force-link-against-libffi.patch
cp "$srcdir"/bootstrap-config.toml config.toml
2017-04-28 02:55:23 +00:00
if [[ $CARCH == armv7h ]]; then
mkdir path
ln -s /usr/bin/g++ path/arm-linux-gnueabihf-g++
export PATH="$srcdir/path:$PATH"
fi
}
build() {
cd "rustc-$pkgver-src"
2017-06-27 18:20:29 +00:00
msg2 "Run build under x.py"
python2 ./x.py build
2017-04-28 02:55:23 +00:00
}
package_rust() {
depends=('gcc-libs' 'llvm-libs')
2017-08-02 00:03:30 +00:00
provides=('cargo')
conflicts=('cargo')
replaces=('cargo')
2017-04-28 02:55:23 +00:00
cd "rustc-$pkgver-src"
2017-07-21 12:43:33 +00:00
DESTDIR="$pkgdir" python2 ./x.py install
2017-04-28 02:55:23 +00:00
for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
cd "$pkgdir/usr/lib"
rm rustlib/{components,manifest-rustc,rust-installer-version}
ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
# move docs out of the way
mv "$pkgdir/usr/share/doc" "$srcdir/"
}
package_rust-docs() {
msg2 "Packaging documentation"
install -d "$pkgdir/usr/share/doc/"
mv "$srcdir"/doc/* "$pkgdir"/usr/share/doc/rust/
msg2 "Packaging license files for the documentation"
for license in APACHE MIT; do install -Dm644 "rustc-$pkgver-src/LICENSE-$license" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
}
# vim:set ts=2 sw=2 et: