diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
commit | f249735ad71fd5f13bfd295c55e1e0d596a1dbff (patch) | |
tree | 93735f3e25beab7ac8bf066c504df17b244db4eb /openobex | |
parent | 11ebfcef190cf217f67fa2b79adee0f58f9718f3 (diff) |
Another pass of .oe cleanups.
BKrev: 405f6aa92YDm0pQN4padj00WWayDrQ
Diffstat (limited to 'openobex')
-rw-r--r-- | openobex/openobex_1.0.1.oe | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openobex/openobex_1.0.1.oe b/openobex/openobex_1.0.1.oe index 08023c117c..5ddca99d7c 100644 --- a/openobex/openobex_1.0.1.oe +++ b/openobex/openobex_1.0.1.oe @@ -1,10 +1,10 @@ DEPENDS = "virtual/libc" RDEPENDS = "libc6" -DESCRIPTIONi = "The Openobex project aims to make an \ +DESCRIPTION = "The Openobex project aims to make an \ open source implementation of the Object Exchange \ (OBEX) protocol." -SRC_URI = ${SOURCEFORGE_MIRROR}/openobex/${P}.tar.gz +SRC_URI = "${SOURCEFORGE_MIRROR}/openobex/openobex-${PV}.tar.gz" inherit autotools libtool @@ -13,8 +13,8 @@ do_stage () { ln -sf libopenobex-1.0.so.1.0.0 ${STAGING_LIBDIR}/libopenobex.so install -m 0755 src/.libs/libopenobex.a ${STAGING_LIBDIR}/libopenobex.a install -m 0755 src/.libs/libopenobex.lai ${STAGING_LIBDIR}/libopenobex.la - install -d ${STAGING_DIR}/target/include/openobex - install -m 0644 src/obex_const.h src/obex.h ${STAGING_DIR}/target/include/openobex/ + install -d ${STAGING_INCDIR}/openobex + install -m 0644 src/obex_const.h src/obex.h ${STAGING_INCDIR}/openobex/ cat openobex-config | sed -e 's,/usr/include,${STAGING_INCDIR},g; \ s,/usr/lib,${STAGING_LIBDIR},g; \ s,/usr/bin,${STAGING_BINDIR},g; \ |