wok view rust/receipt @ rev 22760

updated findutils (4.6.0 -> 4.7.0)
author Hans-G?nter Theisgen
date Fri Jan 24 17:10:12 2020 +0100 (2020-01-24)
parents f729a14d0687
children dbdacb7fd60c
line source
1 # SliTaz package receipt.
3 PACKAGE="rust"
4 VERSION="1.37.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
38 cp -a $install/usr/lib $fs/usr
39 find $fs/usr/lib -type f -name '*.so' -exec chmod a+x \{\} \;
40 }