Skip to content
Permalink
a9f38f5c5d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 39 lines (31 sloc) 711 Bytes
#!/bin/env beesh
# BEE_VERSION rclone-1.50.1-1
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
#}
#mee_configure() {
# bee_configure
#}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install
mkdir -p ${D}/usr/share/man/man1
cp ${S}/rclone.1 ${D}/usr/share/man/man1
}