core/rust/PKGBUILD
2017-11-27 06:21:17 +00:00

52 lines
1.4 KiB
Bash

# Originally imported from Arch Linux with
# Arch Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Arch Contributor: Daniel Micay <danielmicay@gmail.com>
pkgname=rust
pkgver=1.22.1
pkgrel=1
arch=('x86_64')
pkgdesc='Systems programming language focused on safety, speed and concurrency'
url='https://www.rust-lang.org/'
license=('MIT' 'Apache')
provides=('cargo')
conflicts=('cargo')
replaces=('cargo')
depends=('gcc-libs' 'llvm-libs')
makedepends=('rust' 'libffi' 'perl' 'python2' 'curl' 'cmake')
source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"
bootstrap-config.toml)
sha256sums=('8b7a42bdd6eb205a8c533eb41b5c42389a88158d060aed1e0f461f68c1fd3fd3'
'6c25c451d6286efd19e96a552406c8b299345749577cf924699cf4c3831d9ad0')
install="$pkgname.install"
options=('staticlibs' '!strip' '!emptydirs')
prepare() {
cd "rustc-$pkgver-src"
cp "$srcdir"/bootstrap-config.toml config.toml
}
build() {
cd "rustc-$pkgver-src"
msg2 "Run build under x.py"
python2 ./x.py build
}
package() {
cd "rustc-$pkgver-src"
DESTDIR="$pkgdir" python2 ./x.py install
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 .
rm rustlib/uninstall.sh # remove uninstall.sh, pacman manages the files anyway
}