diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-devtools/mercurial | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-oe/recipes-devtools/mercurial')
-rw-r--r-- | meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb | 27 |
1 files changed, 27 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 0000000000..516a9ecc41 --- /dev/null +++ b/meta-oe/recipes-devtools/mercurial/mercurial-native_1.9.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "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 = "r2" | ||
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_configure_append () { | ||
21 | sed -i -e 's:PYTHON=python:PYTHON=${STAGING_BINDIR_NATIVE}/python-native/python:g' ${S}/Makefile | ||
22 | } | ||
23 | |||
24 | do_install () { | ||
25 | oe_runmake -e install-bin DESTDIR=${D} PREFIX=${prefix} | ||
26 | } | ||
27 | |||