From 3f191bb38f5fbe3f3ff7f649d557ac5b7f30ccb5 Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Mon, 27 Apr 2015 21:10:10 +0200 Subject: [PATCH] Add "hub", a tool to make working with github easier. --- dev-vcs/hub/hub-1.12.4.recipe | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 dev-vcs/hub/hub-1.12.4.recipe diff --git a/dev-vcs/hub/hub-1.12.4.recipe b/dev-vcs/hub/hub-1.12.4.recipe new file mode 100644 index 000000000..e85f4824a --- /dev/null +++ b/dev-vcs/hub/hub-1.12.4.recipe @@ -0,0 +1,40 @@ +SUMMARY="Git helper for better Github integration." +DESCRIPTION="hub enhances various git commands to ease most common workflows \ +with GitHub. You can more easily fetch and manage remotes and forks, merge \ +commits directly from the website, and even create and update pull requests, \ +all from the command line." +REVISION="1" +ARCHITECTURES="any" +LICENSE="MIT" +COPYRIGHT="2009-2014 Chris Wanstrath" +HOMEPAGE="http://hub.github.com/" +SRC_URI="https://github.com/github/hub/archive/v1.12.4.tar.gz" + +PROVIDES=" + hub = $portVersion + cmd:hub +" + +REQUIRES=" + cmd:ruby +" + +BUILD_PREREQUIRES=" + cmd:ruby + cmd:rake +" + +BUILD() +{ + true +} + +INSTALL() +{ + rake install PREFIX=$prefix + + # Fixup some hardcoded paths… + mkdir -p $docDir + mv $prefix/share/man $manDir + rmdir $prefix/share +}