diff options
author | Chris Larson <clarson@kergoth.com> | 2003-10-17 23:49:42 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-10-17 23:49:42 +0000 |
commit | d30475c53d2dc974e007ce90bcbd668cea67ac17 (patch) | |
tree | 0b7f5566a92eaa2097a9eec1db1bcf44deca71b8 /bzip2 | |
parent | 675d954b03f008da88e397f903e16891aadccfdd (diff) |
Add staging targets to e2fsprogs-libs and bzip2.
BKrev: 3f9080163-eYuT_5Cn0yjLoMvHMqBQ
Diffstat (limited to 'bzip2')
-rw-r--r-- | bzip2/bzip2_1.0.2.oe | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/bzip2/bzip2_1.0.2.oe b/bzip2/bzip2_1.0.2.oe index e69de29bb2..be412153f6 100644 --- a/bzip2/bzip2_1.0.2.oe +++ b/bzip2/bzip2_1.0.2.oe @@ -0,0 +1,30 @@ +SRC_URI = ftp://sources.redhat.com/pub/bzip2/v102/bzip2-${PV}.tar.gz \ + file://${FILESDIR}/installpaths.patch;patch=1 + +CFLAGS_append = ' -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64' + +do_compile () { + oe_runmake -f Makefile-libbz2_so + ln -sf libbz2.so.1.0.2 libbz2.so.1.0 + ln -sf libbz2.so.1.0.2 libbz2.so.1 + ln -sf libbz2.so.1.0.2 libbz2.so + oe_runmake libbz2.a bzip2 bzip2recover +} + +do_stage () { + install -m 0644 libbz2.a ${STAGING_LIBDIR}/ + install -m 0644 bzlib.h ${STAGING_DIR}/target/include/ + install -m 0755 libbz2.so.1.0.2 ${STAGING_LIBDIR}/ + ln -sf libbz2.so.1.0.2 ${STAGING_LIBDIR}/libbz2.so.1.0 + ln -sf libbz2.so.1.0.2 ${STAGING_LIBDIR}/libbz2.so.1 + ln -sf libbz2.so.1.0.2 ${STAGING_LIBDIR}/libbz2.so +} + +do_install () { + oe_runmake 'DESTDIR=${D}' install + install -d ${D}/${libdir} + install -m 0755 libbz2.so.1.0.2 ${D}/${libdir}/ + ln -sf libbz2.so.1.0.2 ${D}/${libdir}/libbz2.so.1.0 + ln -sf libbz2.so.1.0.2 ${D}/${libdir}/libbz2.so.1 + ln -sf libbz2.so.1.0.2 ${D}/${libdir}/libbz2.so +} |