wok annotate svgcleaner/receipt @ rev 25601

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 16 18:06:38 2023 +0000 (11 months ago)
parents e1e1678c5265
children
rev   line source
al@19473 1 # SliTaz package receipt.
al@19473 2
al@19473 3 PACKAGE="svgcleaner"
Hans-G?nter@23684 4 VERSION="0.9.5"
al@19473 5 CATEGORY="graphics"
Hans-G?nter@23684 6 SHORT_DESC="Clean up SVG files from the unnecessary data."
al@19473 7 MAINTAINER="al.bobylev@gmail.com"
al@19473 8 LICENSE="GPL2"
al@19473 9 WEB_SITE="https://github.com/RazrFalcon/svgcleaner"
Hans-G?nter@23684 10
Hans-G?nter@23684 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@24974 12 WGET_URL="$WEB_SITE/archive/refs/tags/v$VERSION.tar.gz"
al@19473 13
al@19473 14 BUILD_DEPENDS="rust-cargo cacerts"
al@19473 15
pascal@25601 16 # What is the latest version available today?
pascal@24055 17 current_version()
pascal@24055 18 {
pascal@24055 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@25601 20 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
pascal@24055 21 }
pascal@24055 22
al@19473 23 # Rules to configure and make the package.
al@19473 24 compile_rules()
al@19473 25 {
al@19473 26 # to build from crates: no source needed, but no version control
al@19473 27 #cargo install svgcleaner --root=$install/usr
al@19473 28
al@19473 29 cargo build --release
Hans-G?nter@23684 30
al@19473 31 mkdir -p $install/usr/bin
Hans-G?nter@23684 32 cp -a $src/target/release/svgcleaner $install/usr/bin
al@19473 33 }
al@19473 34
al@19473 35 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19473 36 genpkg_rules()
al@19473 37 {
Hans-G?nter@23684 38 cook_copy_files svgcleaner
al@19473 39 }