From 126b1902caa74bc23fc754503b2e14b63293dd6b Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Thu, 6 Jun 2019 11:46:13 +0200 Subject: [PATCH] rclone: add version 1.47.0 Rclone is a command line program to sync files and directories to and from cloud services. https://rclone.org/ --- rclone.be0 | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100755 rclone.be0 diff --git a/rclone.be0 b/rclone.be0 new file mode 100755 index 000000000..b2a7907fb --- /dev/null +++ b/rclone.be0 @@ -0,0 +1,36 @@ +#!/bin/env beesh + +# BEE_VERSION rclone-1.47.0-0 + +SRCURL[0]="https://github.com/ncw/rclone.git" + +export GOPATH=${B}/bee_go + +mee_getsources() { + cd ${S} + git clone ${SRCURL} . + git checkout v${PKGFULLVERSION} +} + + +#mee_patch() { +# bee_patch +#} + +#mee_configure() { +# bee_configure +#} + +mee_build() { + bee_build +} + +mee_install() { + + mkdir -p ${D}/usr/bin + cp ${GOPATH}/bin/rclone ${D}/usr/bin + + mkdir -p ${D}/usr/share/man/man1 + cp ${S}/rclone.1 ${D}/usr/share/man/man1 + +}