wok view rclone/receipt @ rev 22040

updated tokyocabinet and tokyocabinet-dev (1.4.32 -> 1.4.48)
author Hans-G?nter Theisgen
date Mon Oct 21 17:24:12 2019 +0100 (2019-10-21)
parents 6135577f4d08
children fd017bb1655d
line source
1 # SliTaz package receipt.
3 PACKAGE="rclone"
4 VERSION="1.49.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Command line program to sync cloud storage with local folder, and more."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://rclone.org/"
11 TARBALL="$PACKAGE-v${VERSION}-linux-386.zip"
12 WGET_URL="https://downloads.rclone.org/v$VERSION/$TARBALL"
14 DEPENDS="rsync"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 echo "Precompiled binary..."
20 mkdir -p $install/usr/bin
21 cp $src/rclone $install/usr/bin
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }