diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:11 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:57 +0100 |
commit | d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch) | |
tree | f36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/recipes-extended/gperf/gperf.inc | |
parent | caab7fc509bf27706ff3248689f6afd04225cfda (diff) | |
download | poky-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz |
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/gperf/gperf.inc')
-rw-r--r-- | meta/recipes-extended/gperf/gperf.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-extended/gperf/gperf.inc b/meta/recipes-extended/gperf/gperf.inc new file mode 100644 index 0000000000..a521e0943b --- /dev/null +++ b/meta/recipes-extended/gperf/gperf.inc | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "GNU gperf is a perfect hash function generator" | ||
2 | HOMEPAGE = "http://www.gnu.org/software/gperf" | ||
3 | SUMMARY = "Generate a perfect hash function from a set of keywords" | ||
4 | LICENSE = "GPLv3+" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ | ||
6 | file://src/main.cc;firstline=8;endline=19;md5=24688d2dff69bcf5cbea4bc3e4174c5a" | ||
7 | |||
8 | SRC_URI = "${GNU_MIRROR}/gperf/gperf-${PV}.tar.gz" | ||
9 | |||
10 | inherit autotools | ||
11 | |||
12 | # autoreconf couldn't find acinclude.m4 when stepping into subdirectory. Instead of | ||
13 | # duplicating acinclude.m4 in every subdirectory, use absolute include path to aclocal | ||
14 | EXTRA_AUTORECONF += " -I ${S}" | ||
15 | |||
16 | do_configure_prepend() { | ||
17 | if [ ! -e acinclude.m4 ]; then | ||
18 | cat aclocal.m4 > acinclude.m4 | ||
19 | fi | ||
20 | } | ||
21 | |||
22 | BBCLASSEXTEND = "native" | ||