From eb97b1197a88f968fe8faf6a6fae190a4e8a7076 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Fri, 23 Aug 2019 09:52:52 +0200 Subject: [PATCH] [hub] add github cli tool v1.12.3 Hub is a tool that wraps git in order to extend it with extra functionality that makes it better when working with GitHub. see https://github.com/github/hub --- hub.be0 | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 hub.be0 diff --git a/hub.be0 b/hub.be0 new file mode 100755 index 000000000..e5f8bfc02 --- /dev/null +++ b/hub.be0 @@ -0,0 +1,38 @@ +#!/bin/env beesh + +# BEE_VERSION hub-2.12.3-0 + +SRCURL[0]="https://github.com/github/hub.git" + +export GOPATH=${B}/bee_go + +mee_getsources() { + cd ${S} + git clone \ + --config transfer.fsckobjects=false \ + --config receive.fsckobjects=false \ + --config fetch.fsckobjects=false \ + ${SRCURL} . + git checkout v${PKGFULLVERSION} +} + + +#mee_patch() { +# bee_patch +#} + +#mee_configure() { +# bee_configure +#} + +#mee_build() { +# make +#} + +#mee_install() { +# bee_install +#} + +#mee_install_post() { +# exit +#}