Files
poky/meta/packages/bzip2/bzip2-full-native_1.0.5.bb
Joshua Lock e419523cbf 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
2008-09-23 03:30:23 +00:00

26 lines
632 B
BlitzBasic

DESCRIPTION = "Very high-quality data compression program."
SECTION = "console/utils"
PR = "r0"
LICENSE = "bzip2"
SRC_URI = "http://www.bzip.org/1.0.5/bzip2-1.0.5.tar.gz \
file://configure.ac \
file://Makefile.am"
S = "${WORKDIR}/bzip2-${PV}"
CFLAGS_append = " -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64"
inherit autotools native
do_configure_prepend () {
cp ${WORKDIR}/configure.ac ${S}/
cp ${WORKDIR}/Makefile.am ${S}/
cp ${STAGING_DATADIR_NATIVE}/automake*/install-sh ${S}/
}
do_stage () {
install -m 0644 bzlib.h ${STAGING_INCDIR}/
oe_libinstall -a -so libbz2 ${STAGING_LIBDIR}
}