wok annotate rclone/receipt @ rev 21194
systemd: corrected build dependencies
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 05 17:53:25 2019 +0100 (2019-04-05) |
parents | c0c2dc174fdf |
children | 0df7c7a84904 |
rev | line source |
---|---|
pankso@19682 | 1 # SliTaz package receipt. |
pankso@19682 | 2 |
pankso@19682 | 3 PACKAGE="rclone" |
llevrel@20639 | 4 VERSION="1.44" |
pankso@19682 | 5 CATEGORY="system-tools" |
llevrel@20639 | 6 SHORT_DESC="Cmdline tool to sync cloud storage with local folder, and more" |
pankso@19682 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@19682 | 8 LICENSE="BSD" |
pankso@19682 | 9 TARBALL="$PACKAGE-v${VERSION}-linux-386.zip" |
pascal@20679 | 10 WEB_SITE="https://rclone.org/" |
llevrel@20639 | 11 WGET_URL="https://downloads.rclone.org/v$VERSION/$TARBALL" |
pankso@19682 | 12 |
pankso@19682 | 13 DEPENDS="rsync" |
pankso@19682 | 14 |
pankso@19682 | 15 # Rules to configure and make the package. |
pankso@19682 | 16 compile_rules() |
pankso@19682 | 17 { |
pascal@20319 | 18 echo "Precompiled binary..." |
pankso@19682 | 19 mkdir -p $install/usr/bin |
pankso@19682 | 20 cp $src/rclone $install/usr/bin |
pankso@19682 | 21 } |
pankso@19682 | 22 |
pankso@19682 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@19682 | 24 genpkg_rules() |
pankso@19682 | 25 { |
pankso@19682 | 26 mkdir -p $fs/usr |
pankso@19682 | 27 cp -a $install/usr/bin $fs/usr |
pankso@19682 | 28 } |