diff options
author | Tom Rini <tom_rini@mentor.com> | 2011-07-15 11:15:10 -0700 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-07-19 09:25:55 +0200 |
commit | ed90232e311fa36eabd3f51bbf6aaaf99a7d24e2 (patch) | |
tree | 93032d4dcd30caa9a5a165baf3231088e9e42b9f /meta-oe | |
parent | 7121a25f004b621334074b3c32f2eca0c37a67a1 (diff) | |
download | meta-openembedded-ed90232e311fa36eabd3f51bbf6aaaf99a7d24e2.tar.gz |
mercurial-native: Add 1.9 version
This is based on 91c14caa8819b08def8ea99e02949e49604c2e86 from oe.dev
with an update to 1.9.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb b/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb new file mode 100644 index 000000000..b4438a3d0 --- /dev/null +++ b/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "The Mercurial distributed SCM" | ||
2 | HOMEPAGE = "http://mercurial.selenic.com/" | ||
3 | SECTION = "console/utils" | ||
4 | LICENSE = "GPLv2" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
6 | DEPENDS = "python-native" | ||
7 | PR = "r1" | ||
8 | |||
9 | SRC_URI = "http://mercurial.selenic.com/release/mercurial-${PV}.tar.gz" | ||
10 | SRC_URI[md5sum] = "d4842129fa2732eb6ed1180467bc32e2" | ||
11 | SRC_URI[sha256sum] = "711e4b1cd2924a7a88499d6c431a9122390183bf554d4e153edbb3b2f30123e0" | ||
12 | |||
13 | S = "${WORKDIR}/mercurial-${PV}" | ||
14 | |||
15 | inherit native | ||
16 | |||
17 | EXTRA_OEMAKE = "STAGING_LIBDIR=${STAGING_LIBDIR} STAGING_INCDIR=${STAGING_INCDIR} \ | ||
18 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} PREFIX=${prefix}" | ||
19 | |||
20 | do_install () { | ||
21 | oe_runmake -e install-bin DESTDIR=${D} PREFIX=${prefix} | ||
22 | } | ||
23 | |||
24 | NATIVE_INSTALL_WORKS = "1" | ||