[oe-commits] Eric Bénard : mercurial-native: add recipe

git version control git at git.openembedded.org
Wed Sep 8 19:27:36 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 41ee3c4d7c0e72436049c2c0972fe6e3b6311c5f
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=41ee3c4d7c0e72436049c2c0972fe6e3b6311c5f

Author: Eric Bénard <eric at eukrea.com>
Date:   Mon Sep  6 23:15:39 2010 +0200

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 <eric at eukrea.com>

---

 recipes/mercurial/mercurial-native_1.6.3.bb |   21 +++++++++++++++++++++
 1 files changed, 21 insertions(+), 0 deletions(-)

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 0000000..717f8f6
--- /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}
+}





More information about the Openembedded-commits mailing list