wok diff rust/receipt @ rev 23079

updated liblinebreak and liblinebreak-dev (2.0 -> 2.1)
author Hans-G?nter Theisgen
date Tue Mar 10 16:26:23 2020 +0100 (2020-03-10)
parents f729a14d0687
children dbdacb7fd60c
line diff
     1.1 --- a/rust/receipt	Mon Dec 31 15:16:31 2018 +0100
     1.2 +++ b/rust/receipt	Tue Mar 10 16:26:23 2020 +0100
     1.3 @@ -1,32 +1,39 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="rust"
     1.7 -VERSION="1.31.1"
     1.8 +VERSION="1.37.0"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="The Rust programming language"
    1.11 +SHORT_DESC="The Rust programming language."
    1.12  MAINTAINER="al.bobylev@gmail.com"
    1.13  LICENSE="MIT Apache BSD"
    1.14  WEB_SITE="https://www.rust-lang.org/"
    1.15 +
    1.16  TARBALL="rust-$VERSION-i686-unknown-linux-gnu.tar.gz"
    1.17  WGET_URL="https://static.rust-lang.org/dist/$TARBALL"
    1.18  
    1.19  SIBLINGS="rust-cargo"
    1.20 -BUILD_DEPENDS="wget cacerts"
    1.21 +BUILD_DEPENDS="cacerts"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26 -	./install.sh \
    1.27 -		--prefix=$install/usr \
    1.28 -		--sysconfdir=$install/etc \
    1.29 -		--mandir=$install/usr/share/man \
    1.30 +	./install.sh				\
    1.31 +		--prefix=$install/usr		\
    1.32 +		--sysconfdir=$install/etc	\
    1.33 +		--mandir=$install/usr/share/man	\
    1.34  		--without=rust-docs
    1.35  }
    1.36  
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38  genpkg_rules()
    1.39  {
    1.40 -	cook_copy_files rust-gdb rustc rustdoc rustc.1* rustdoc.1*
    1.41 +	cook_copy_files		\
    1.42 +		rust-gdb	\
    1.43 +		rustc		\
    1.44 +		rustdoc		\
    1.45 +		rustc.1*	\
    1.46 +		rustdoc.1*
    1.47 +
    1.48  	mkdir -p $fs/usr
    1.49  	cp -a $install/usr/lib $fs/usr
    1.50  	find $fs/usr/lib -type f -name '*.so' -exec chmod a+x \{\} \;