wok annotate rclone/receipt @ rev 20334

Do not use efi shell (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 02 16:13:06 2018 +0200 (2018-06-02)
parents a5dc9fa5639c
children c0c2dc174fdf
rev   line source
pankso@19682 1 # SliTaz package receipt.
pankso@19682 2
pankso@19682 3 PACKAGE="rclone"
pankso@19682 4 VERSION="1.35"
pankso@19682 5 CATEGORY="system-tools"
pankso@19682 6 SHORT_DESC="Cmdline tool to sync clound storage to local folder"
pankso@19682 7 MAINTAINER="pankso@slitaz.org"
pankso@19682 8 LICENSE="BSD"
pankso@19682 9 TARBALL="$PACKAGE-v${VERSION}-linux-386.zip"
pankso@19682 10 WEB_SITE="http://rclone.org/"
pankso@19682 11 WGET_URL="http://downloads.rclone.org/$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 }