From: Eric Bénard Date: Mon, 6 Sep 2010 21:15:39 +0000 (+0200) Subject: mercurial-native: add recipe X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41ee3c4d7c0e72436049c2c0972fe6e3b6311c5f;p=openembedded.git mercurial-native: add recipe * mercurial is a distributed SCM * having the native recipe inside OpenEmbedded gives the possibility to fetch code from mercurial's repositories without the need to have mercurial installed on the host Signed-off-by: Eric Bénard --- diff --git a/recipes/mercurial/mercurial-native_1.6.3.bb b/recipes/mercurial/mercurial-native_1.6.3.bb new file mode 100644 index 0000000000..717f8f6f9d --- /dev/null +++ b/recipes/mercurial/mercurial-native_1.6.3.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "The Mercurial distributed SCM" +HOMEPAGE = "http://mercurial.selenic.com/" +SECTION = "console/utils" +LICENSE = "GPLv2" +DEPENDS = "python-native" +PR = "r0" + +SRC_URI = "http://mercurial.selenic.com/release/mercurial-${PV}.tar.gz;name=src" +SRC_URI[src.md5sum] = "fcd61edc488d1b9aa831dde6f14d9a13" +SRC_URI[src.sha256sum] = "57e5d26d35fbec71206378e3af111193e6eee7bb1dfb6447bbc4b9e03ce937bd" + +S = "${WORKDIR}/mercurial-${PV}" + +inherit native + +EXTRA_OEMAKE = "STAGING_LIBDIR=${STAGING_LIBDIR} STAGING_INCDIR=${STAGING_INCDIR} \ + BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} PREFIX=${prefix}" + +do_install () { + oe_runmake -e install DESTDIR=${D} PREFIX=${prefix} +}