wok view rust/receipt @ rev 23696

Up libtcplay (3.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 27 09:29:39 2020 +0000 (2020-04-27)
parents 76553471f1b5
children 848e2021d813
line source
1 # SliTaz package receipt.
3 PACKAGE="rust"
4 VERSION="1.42.0"
5 CATEGORY="development"
6 SHORT_DESC="The Rust programming language."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT Apache BSD"
9 WEB_SITE="https://www.rust-lang.org/"
11 TARBALL="rust-$VERSION-i686-unknown-linux-gnu.tar.gz"
12 WGET_URL="https://static.rust-lang.org/dist/$TARBALL"
14 SIBLINGS="rust-cargo"
15 BUILD_DEPENDS="cacerts"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./install.sh \
21 --prefix=$install/usr \
22 --sysconfdir=$install/etc \
23 --mandir=$install/usr/share/man \
24 --without=rust-docs
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cook_copy_files \
31 rust-gdb \
32 rustc \
33 rustdoc \
34 rustc.1* \
35 rustdoc.1*
37 mkdir -p $fs/usr
39 cp -a $install/usr/lib $fs/usr
40 find $fs/usr/lib -type f -name '*.so' -exec chmod a+x \{\} \;
41 }