wok view rclone/receipt @ rev 20896

updated ethtool (4.2 -> 4.19)
author Hans-G?nter Theisgen
date Tue Feb 26 14:11:25 2019 +0100 (2019-02-26)
parents c0c2dc174fdf
children 0df7c7a84904
line source
1 # SliTaz package receipt.
3 PACKAGE="rclone"
4 VERSION="1.44"
5 CATEGORY="system-tools"
6 SHORT_DESC="Cmdline tool to sync cloud storage with local folder, and more"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-v${VERSION}-linux-386.zip"
10 WEB_SITE="https://rclone.org/"
11 WGET_URL="https://downloads.rclone.org/v$VERSION/$TARBALL"
13 DEPENDS="rsync"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 echo "Precompiled binary..."
19 mkdir -p $install/usr/bin
20 cp $src/rclone $install/usr/bin
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 }