mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:07:15 +08:00
55 lines
1.5 KiB
Bash
55 lines
1.5 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.26.2
|
|
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' 'curl' 'libssh2')
|
|
makedepends=('rust' 'libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
|
|
source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"
|
|
config.toml)
|
|
sha256sums=('fb9ecf304488c9b56600ab20cfd1937482057f7e5db7899fddb86e0774548700'
|
|
'c0988fa7cb0dd3686379df9e0c45104895b69519a258f8a4ae56bd6af1670639')
|
|
install="$pkgname.install"
|
|
options=('staticlibs' '!strip' '!emptydirs')
|
|
|
|
prepare() {
|
|
cd "rustc-$pkgver-src"
|
|
|
|
cp "$srcdir"/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 .
|
|
|
|
install -d "$pkgdir"/usr/share/bash-completion
|
|
mv "$pkgdir"/etc/bash_completion.d/ "$pkgdir"/usr/share/bash-completion/completions/
|
|
|
|
rm rustlib/uninstall.sh # remove uninstall.sh, pacman manages the files anyway
|
|
}
|