From 41ee3c4d7c0e72436049c2c0972fe6e3b6311c5f Mon Sep 17 00:00:00 2001 From: Eric Bénard Date: Mon, 6 Sep 2010 23:15:39 +0200 Subject: mercurial-native: add recipe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- recipes/mercurial/mercurial-native_1.6.3.bb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 recipes/mercurial/mercurial-native_1.6.3.bb (limited to 'recipes/mercurial') 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} +} -- cgit 1.2.3-korg