wok-next view svgcleaner/receipt @ rev 19789

Add js, up pam, polkit, polkit-pam; fix typo in btrfs-progs.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jun 20 03:48:54 2017 +0300 (2017-06-20)
parents 91a99d774072
children 42f46ff4970b
line source
1 # SliTaz package receipt v2.
3 PACKAGE="svgcleaner"
4 VERSION="0.9.0"
5 #COMMIT="16e20b3"
6 CATEGORY="graphics"
7 SHORT_DESC="Clean up SVG files from the unnecessary data"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/RazrFalcon/svgcleaner"
12 TARBALL="$PACKAGE-${COMMIT:-v$VERSION}.tar.gz"
13 WGET_URL="$GITHUB/RazrFalcon/svgcleaner/tarball/${COMMIT:-v$VERSION}"
15 BUILD_DEPENDS="rust-cargo cacerts"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # to build from crates: no source needed, but no version control
21 #cargo install svgcleaner --root=$install/usr
23 cargo build --release
24 mkdir -p $install/usr/bin
25 cp -a $src/target/release/svgcleaner $install/usr/bin
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 copy svgcleaner
32 }