diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-07-17 09:57:09 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-10-23 20:09:07 +0200 |
commit | e924f544a9b30a9d4198eb9f7dcafd765245e952 (patch) | |
tree | e9e959136a23ac23c6411030f3771f2799c87cf7 | |
parent | 5705ab6ec5a13ef7ca0fcdceb7d72cda64c59352 (diff) |
apt: stage headers/libs (from Poky)
git-svn-id: https://svn.o-hand.com/repos/poky@4856 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | packages/apt/apt_0.7.14.bb | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/packages/apt/apt_0.7.14.bb b/packages/apt/apt_0.7.14.bb index 0da36571ee..efd7ab3bc5 100644 --- a/packages/apt/apt_0.7.14.bb +++ b/packages/apt/apt_0.7.14.bb @@ -3,7 +3,7 @@ RDEPENDS = "dpkg" require apt.inc -PR = "r1" +PR = "r2" SRC_URI += "file://nodoc.patch;patch=1" @@ -11,3 +11,14 @@ require apt-package.inc FILES_${PN} += "${bindir}/apt-key" apt-manpages += "doc/apt-key.8" + +do_stage() { + install -d ${STAGING_LIBDIR} ${STAGING_INCDIR}/apt-pkg + eval `cat environment.mak | grep ^GLIBC_VER | sed -e's, = ,=,'` + oe_libinstall -so -C bin libapt-pkg$GLIBC_VER-6 ${STAGING_LIBDIR}/ + ln -sf libapt-pkg$GLIBC_VER-6.so ${STAGING_LIBDIR}/libapt-pkg.so + oe_libinstall -so -C bin libapt-inst$GLIBC_VER-6 ${STAGING_LIBDIR}/ + ln -sf libapt-inst$GLIBC_VER-6.so ${STAGING_LIBDIR}/libapt-inst.so + + install -m 0644 include/apt-pkg/*.h ${STAGING_INCDIR}/apt-pkg/ +} |