mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
removed community/rust
This commit is contained in:
parent
f3efb3633c
commit
2bd7401edd
2 changed files with 0 additions and 85 deletions
|
@ -1,74 +0,0 @@
|
|||
# $Id$
|
||||
# Maintainer: Daniel Micay <danielmicay@gmail.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - makedepend on rust, configure to use local rust instead of nonexistent binary download
|
||||
|
||||
buildarch=4
|
||||
|
||||
pkgname=rust
|
||||
_pkgver=1.0.0-alpha
|
||||
pkgver=1.0.0.alpha
|
||||
pkgrel=1
|
||||
arch=('i686' 'x86_64')
|
||||
pkgdesc='A safe, concurrent, practical language'
|
||||
url='http://www.rust-lang.org/'
|
||||
license=('MIT' 'Apache')
|
||||
depends=(gcc shared-mime-info)
|
||||
makedepends=(libffi perl python2 curl rust)
|
||||
source=("http://static.rust-lang.org/dist/rustc-$_pkgver-src.tar.gz"
|
||||
"http://static.rust-lang.org/dist/rustc-$_pkgver-src.tar.gz.asc")
|
||||
sha256sums=('3a2285726e839fc57ad49ed8907a50bab2d29d8f898e2d5a02f620a0477fc25c'
|
||||
'SKIP')
|
||||
install=rust.install
|
||||
options=(staticlibs)
|
||||
validpgpkeys=(
|
||||
# Rust Language (Tag and Release Signing Key) <rust-key@rust-lang.org>
|
||||
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
|
||||
)
|
||||
|
||||
build() {
|
||||
cd rustc-$_pkgver
|
||||
|
||||
./configure --prefix=/usr --disable-debug --disable-docs --disable-verify-install --enable-local-rust --local-rust-root=/usr
|
||||
|
||||
# avoid python makedepend (force fallback to python2)
|
||||
sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
#check() {
|
||||
#cd rustc-$_pkgver
|
||||
#make check
|
||||
#}
|
||||
|
||||
package() {
|
||||
cd rustc-$_pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
|
||||
mkdir -p "$pkgdir/usr/share/vim" "$pkgdir/usr/share/licenses/$pkgname"
|
||||
|
||||
cp -a src/etc/vim "$pkgdir/usr/share/vim/vimfiles"
|
||||
find "$pkgdir/usr/share/vim" -type f -exec chmod 644 {} +
|
||||
find "$pkgdir/usr/share/vim" -type d -exec chmod 755 {} +
|
||||
|
||||
install -Dm644 src/etc/zsh/_rust "$pkgdir/usr/share/zsh/site-functions/_rust"
|
||||
install -Dm644 src/etc/kate/rust.xml "$pkgdir/usr/share/apps/katepart/syntax/rust.xml"
|
||||
install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
|
||||
"$pkgdir/usr/share/mime/packages/rust.xml"
|
||||
install -Dm644 src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
|
||||
"$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang"
|
||||
|
||||
install -m644 LICENSE-APACHE "$pkgdir/usr/share/licenses/$pkgname"
|
||||
install -m644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname"
|
||||
|
||||
cd src/etc/emacs
|
||||
install -Dm644 rust-mode.el "$pkgdir/usr/share/emacs/site-lisp/rust-mode.el"
|
||||
|
||||
cd "$pkgdir/usr"
|
||||
|
||||
cd lib
|
||||
rm rustlib/{components,manifest-rustc,rust-installer-version}
|
||||
ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
post_install() {
|
||||
update-mime-database usr/share/mime >/dev/null
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
post_install
|
||||
}
|
||||
|
||||
post_remove() {
|
||||
post_install
|
||||
}
|
Loading…
Reference in a new issue