wok-next annotate rust-musl/receipt @ rev 20430

fake-sane: fix copy-paste typo
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 24 13:29:11 2018 +0200 (2018-01-24)
parents
children 757d032c55c7
rev   line source
al@19866 1 # SliTaz package receipt v2.
al@19866 2
al@19866 3 PACKAGE="rust-musl"
al@19866 4 VERSION="1.20.0"
al@19866 5 CATEGORY="development"
al@19866 6 SHORT_DESC="The Rust programming language (stdlib for musl)"
al@19866 7 MAINTAINER="al.bobylev@gmail.com"
al@19866 8 LICENSE="MIT Apache BSD"
al@19866 9 WEB_SITE="https://www.rust-lang.org/"
al@19866 10
al@19866 11 TARBALL="rust-std-$VERSION-i686-unknown-linux-musl.tar.xz"
al@19866 12 WGET_URL="https://static.rust-lang.org/dist/$TARBALL"
al@19866 13
al@19866 14 # Rules to configure and make the package.
al@19866 15 compile_rules()
al@19866 16 {
al@19866 17 ./install.sh \
al@19866 18 --prefix=$install/usr \
al@19866 19 --sysconfdir=$install/etc \
al@19866 20 --mandir=$install/usr/share/man \
al@19866 21 --without=rust-docs
al@19866 22 }
al@19866 23
al@19866 24 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19866 25 genpkg_rules()
al@19866 26 {
al@19866 27 copy @std
al@19866 28 DEPENDS="rust"
al@19866 29 }