From patchwork Tue Aug 14 09:48:20 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [RFC] plowshare: Add Git version (initial recipe) Date: Tue, 14 Aug 2012 09:48:20 -0000 From: Matthieu X-Patchwork-Id: 34473 Message-Id: To: openembedded-devel@lists.openembedded.org Add recipe for plowshare (git repository). Signed-off-by: Matthieu Crapet --- plowshare_git.bb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 plowshare_git.bb -- 1.7.9.5 diff --git a/plowshare_git.bb b/plowshare_git.bb new file mode 100644 index 0000000..ec33bff --- /dev/null +++ b/plowshare_git.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Command-line download/upload tool for file sharing hosters" +HOMEPAGE = "http://code.google.com/p/plowshare/" +SECTION = "console/utils" + +LICENSE = "GPLv3" +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" + +PV = "gitr${SRCPV}" +PE = "1" +SRCREV = "${AUTOREV}" +DEPENDS = "bash curl" + +SRC_URI = "git://code.google.com/p/plowshare.git;protocol=http;branch=master" +S = "${WORKDIR}/git" + +inherit allarch + +# Nothing to compile, it's scripts! +do_compile() { + : +} + +do_install() { + oe_runmake PREFIX="${prefix}" DESTDIR="${D}" install +}