diff options
Diffstat (limited to 'meta-oe/recipes-devtools/mercurial/mercurial-native_4.4.bb')
-rw-r--r-- | meta-oe/recipes-devtools/mercurial/mercurial-native_4.4.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/mercurial/mercurial-native_4.4.bb b/meta-oe/recipes-devtools/mercurial/mercurial-native_4.4.bb new file mode 100644 index 000000000..693d4e40d --- /dev/null +++ b/meta-oe/recipes-devtools/mercurial/mercurial-native_4.4.bb | |||
@@ -0,0 +1,26 @@ | |||
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 | |||
8 | SRC_URI = "https://www.mercurial-scm.org/release/${BP}.tar.gz" | ||
9 | SRC_URI[md5sum] = "c1d9fad1b7ed7077b0d4ae82e71154db" | ||
10 | SRC_URI[sha256sum] = "234af4a67565c85923b0a1910c704ab44bcf12f69b85532687208776563d87de" | ||
11 | |||
12 | S = "${WORKDIR}/mercurial-${PV}" | ||
13 | |||
14 | inherit native | ||
15 | |||
16 | EXTRA_OEMAKE = "STAGING_LIBDIR=${STAGING_LIBDIR} STAGING_INCDIR=${STAGING_INCDIR} \ | ||
17 | PREFIX=${prefix}" | ||
18 | |||
19 | do_configure_append () { | ||
20 | sed -i -e 's:PYTHON=python:PYTHON=${STAGING_BINDIR_NATIVE}/python-native/python:g' ${S}/Makefile | ||
21 | } | ||
22 | |||
23 | do_install () { | ||
24 | oe_runmake -e install-bin DESTDIR=${D} PREFIX=${prefix} | ||
25 | } | ||
26 | |||