core/rust/PKGBUILD

57 lines
1.8 KiB
Bash
Raw Normal View History

2015-07-05 00:12:42 +08:00
# Originally imported from Arch Linux with
# Arch Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Arch Contributor: Daniel Micay <danielmicay@gmail.com>
pkgname=rust
2017-03-21 15:25:22 +08:00
pkgver=1.16.0
2015-09-21 19:27:04 +08:00
pkgrel=1
2015-07-08 17:32:14 +08:00
arch=('x86_64')
2015-07-05 00:12:42 +08:00
pkgdesc='Systems programming language focused on safety, speed and concurrency'
2017-03-06 07:25:22 +08:00
url='https://www.rust-lang.org/'
2015-07-05 00:12:42 +08:00
license=('MIT' 'Apache')
2017-03-06 07:25:22 +08:00
depends=('gcc-libs' 'llvm-libs')
2017-03-21 15:25:22 +08:00
makedepends=('libffi' 'perl' 'python2' 'curl' 'jemalloc' 'llvm')
optdepends=('cargo')
source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"
0001-liballoc_jemalloc-fix-linking-with-system-library.patch)
sha256sums=('f966b31eb1cd9bd2df817c391a338eeb5b9253ae0a19bf8a11960c560f96e8b4'
'b61d9aae58925b222cd44d7b41f0aa648fde89a48e7772aa659acd0d74dde612')
2015-07-05 00:12:42 +08:00
install="$pkgname.install"
2017-03-06 07:25:22 +08:00
options=('staticlibs' '!strip' '!emptydirs')
2015-07-05 00:12:42 +08:00
2017-03-21 15:25:22 +08:00
prepare() {
cd "rustc-$pkgver-src"
# Backport of https://github.com/rust-lang/rust/pull/39481
patch -p1 <"$srcdir"/0001-liballoc_jemalloc-fix-linking-with-system-library.patch
}
2015-07-05 00:12:42 +08:00
build() {
2017-03-06 07:25:22 +08:00
cd "rustc-$pkgver-src"
./configure --prefix=/usr \
--release-channel=stable \
--llvm-root=/usr \
--disable-codegen-tests \
2017-03-21 15:25:22 +08:00
--jemalloc-root=/usr/lib
2017-03-06 07:25:22 +08:00
export RUSTFLAGS="$RUSTFLAGS -C link-args=-lffi"
2015-07-05 00:12:42 +08:00
2017-03-21 15:25:22 +08:00
python2 ./x.py build --verbose
2015-07-05 00:12:42 +08:00
}
package() {
2017-03-06 07:25:22 +08:00
cd "rustc-$pkgver-src"
2015-07-05 00:12:42 +08:00
make DESTDIR="$pkgdir" install
install -Dm644 LICENSE-APACHE \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
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
2015-07-05 00:12:42 +08:00
}