diff options
author | Joshua Lock <josh@openedhand.com> | 2008-09-23 03:30:23 +0000 |
---|---|---|
committer | Joshua Lock <josh@openedhand.com> | 2008-09-23 03:30:23 +0000 |
commit | e419523cbf54ee3d3d05325ad9ab5d09c52e8308 (patch) | |
tree | de115e148fe58cc13190c4771352318e5995a716 /meta/packages/bzip2/bzip2-full-native_1.0.5.bb | |
parent | 6e1a993ecc25b3691400992f794288c685211d06 (diff) | |
download | poky-e419523cbf54ee3d3d05325ad9ab5d09c52e8308.tar.gz |
Add a bzip2-full-native recipe and make the python-native recipe depend on it.
Yum requires bzip2 support in Python so our native Python package needs something to provide it.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5233 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/bzip2/bzip2-full-native_1.0.5.bb')
-rw-r--r-- | meta/packages/bzip2/bzip2-full-native_1.0.5.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/packages/bzip2/bzip2-full-native_1.0.5.bb b/meta/packages/bzip2/bzip2-full-native_1.0.5.bb new file mode 100644 index 0000000000..13bebbb3d5 --- /dev/null +++ b/meta/packages/bzip2/bzip2-full-native_1.0.5.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | DESCRIPTION = "Very high-quality data compression program." | ||
2 | SECTION = "console/utils" | ||
3 | PR = "r0" | ||
4 | |||
5 | LICENSE = "bzip2" | ||
6 | SRC_URI = "http://www.bzip.org/1.0.5/bzip2-1.0.5.tar.gz \ | ||
7 | file://configure.ac \ | ||
8 | file://Makefile.am" | ||
9 | |||
10 | S = "${WORKDIR}/bzip2-${PV}" | ||
11 | |||
12 | CFLAGS_append = " -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64" | ||
13 | |||
14 | inherit autotools native | ||
15 | |||
16 | do_configure_prepend () { | ||
17 | cp ${WORKDIR}/configure.ac ${S}/ | ||
18 | cp ${WORKDIR}/Makefile.am ${S}/ | ||
19 | cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/ | ||
20 | } | ||
21 | |||
22 | do_stage () { | ||
23 | install -m 0644 bzlib.h ${STAGING_INCDIR}/ | ||
24 | oe_libinstall -a -so libbz2 ${STAGING_LIBDIR} | ||
25 | } | ||