diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/packages/expat/expat_1.95.7.bb | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/expat/expat_1.95.7.bb')
-rw-r--r-- | meta/packages/expat/expat_1.95.7.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/packages/expat/expat_1.95.7.bb b/meta/packages/expat/expat_1.95.7.bb new file mode 100644 index 0000000000..c3bbb8981b --- /dev/null +++ b/meta/packages/expat/expat_1.95.7.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | SECTION = "libs" | ||
2 | DESCRIPTION = "Jim Clarkes XML parser library." | ||
3 | HOMEPAGE = "http://expat.sourceforge.net/" | ||
4 | LICENSE = "MIT" | ||
5 | PR = "r1" | ||
6 | |||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/expat/expat-${PV}.tar.gz \ | ||
8 | file://autotools.patch;patch=1" | ||
9 | S = "${WORKDIR}/expat-${PV}" | ||
10 | |||
11 | inherit autotools lib_package | ||
12 | export LTCC = "${CC}" | ||
13 | |||
14 | do_configure () { | ||
15 | rm -f ${S}/conftools/libtool.m4 | ||
16 | autotools_do_configure | ||
17 | } | ||
18 | |||
19 | do_stage () { | ||
20 | install -m 0644 ${S}/lib/expat.h ${STAGING_INCDIR}/ | ||
21 | oe_libinstall -so libexpat ${STAGING_LIBDIR} | ||
22 | } | ||
23 | |||
24 | do_install () { | ||
25 | oe_runmake prefix="${D}${prefix}" \ | ||
26 | bindir="${D}${bindir}" \ | ||
27 | libdir="${D}${libdir}" \ | ||
28 | includedir="${D}${includedir}" \ | ||
29 | install | ||
30 | } | ||