Skip to content

Commit

Permalink
rclone: update to 1.50.1
Browse files Browse the repository at this point in the history
- build only via git supported
  • Loading branch information
wwwutz committed Nov 6, 2019
1 parent 5dbf886 commit fd630b6
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions rclone.be0
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
#!/bin/env beesh

# BEE_VERSION rclone-1.49.2-0
# BEE_VERSION rclone-1.50.1-1

SRCURL[0]="https://github.com/rclone/rclone/archive/v${PKGVERSION}.tar.gz ${PKGNAME}-${PKGVERSION}.tar.gz"
SRCURL[0]="https://github.com/rclone/rclone.git"

export GOPATH=${B}/bee_go

mee_getsources() {
mkdir -vp ${F}
cd ${F}
[ -d ${PKGNAME}-git ] || \
git clone \
--config transfer.fsckobjects=false \
--config receive.fsckobjects=false \
--config fetch.fsckobjects=false \
${SRCURL} ${PKGNAME}-git
cd ${S}
git clone ${F}/${PKGNAME}-git .
git checkout --quiet v${PKGFULLVERSION}
}

#mee_patch() {
# bee_patch
#}
Expand All @@ -14,13 +28,12 @@ export GOPATH=${B}/bee_go
# bee_configure
#}

mee_build() {
bee_build
}
#mee_build() {
# bee_build
#}

mee_install() {
bee_install
mkdir -p ${D}/usr/share/man/man1
cp ${S}/rclone.1 ${D}/usr/share/man/man1

}

0 comments on commit fd630b6

Please sign in to comment.