# Description: Mozilla tarafından güvenli, eşzamanlı, pratik bir dil.
# URL: http://www.rust-lang.org/
# Packager: milisarge
# Depends on: libffi python jemalloc cmake ccache
 
name=rust
version=1.16.0
release=1
source=(http://static.rust-lang.org/dist/rustc-$version-src.tar.gz)
 
build() {
	cd rustc-$version-src

	./configure --prefix=/usr \
	--release-channel=stable \
	--disable-docs \
	--enable-ccache
    make CFLAGS=" -fPIC -w"
	make DESTDIR=$PKG install

	cd "$PKG/usr/lib"
	rm rustlib/{components,manifest-rustc,rust-installer-version}
	ln -sf rustlib/x86_64-unknown-linux-gnu/lib/*.so .

}
