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 /lzo | |
parent | 11ebfcef190cf217f67fa2b79adee0f58f9718f3 (diff) |
Another pass of .oe cleanups.
BKrev: 405f6aa92YDm0pQN4padj00WWayDrQ
Diffstat (limited to 'lzo')
-rw-r--r-- | lzo/lzo_1.08.oe | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lzo/lzo_1.08.oe b/lzo/lzo_1.08.oe index c4464520fe..390bd4a3d0 100644 --- a/lzo/lzo_1.08.oe +++ b/lzo/lzo_1.08.oe @@ -4,7 +4,7 @@ PRIORITY = "optional" RDEPENDS = "libc6" DEPENDS = "virtual/libc" -SRC_URI="http://www.oberhumer.com/opensource/lzo/download/lzo-1.08.tar.gz" +SRC_URI = "http://www.oberhumer.com/opensource/lzo/download/lzo-${PV}.tar.gz" inherit autotools libtool @@ -15,18 +15,18 @@ do_configure () { } do_stage() { - install -m 0644 include/lzo1.h ${STAGING_DIR}/target/include/lzo1.h - install -m 0644 include/lzo16bit.h ${STAGING_DIR}/target/include/lzo16bit.h - install -m 0644 include/lzo1a.h ${STAGING_DIR}/target/include/lzo1a.h - install -m 0644 include/lzo1b.h ${STAGING_DIR}/target/include/lzo1b.h - install -m 0644 include/lzo1c.h ${STAGING_DIR}/target/include/lzo1c.h - install -m 0644 include/lzo1f.h ${STAGING_DIR}/target/include/lzo1f.h - install -m 0644 include/lzo1x.h ${STAGING_DIR}/target/include/lzo1x.h - install -m 0644 include/lzo1y.h ${STAGING_DIR}/target/include/lzo1y.h - install -m 0644 include/lzo1z.h ${STAGING_DIR}/target/include/lzo1z.h - install -m 0644 include/lzo2a.h ${STAGING_DIR}/target/include/lzo2a.h - install -m 0644 include/lzoconf.h ${STAGING_DIR}/target/include/lzoconf.h - install -m 0644 include/lzoutil.h ${STAGING_DIR}/target/include/lzoutil.h + install -m 0644 include/lzo1.h ${STAGING_INCDIR}/lzo1.h + install -m 0644 include/lzo16bit.h ${STAGING_INCDIR}/lzo16bit.h + install -m 0644 include/lzo1a.h ${STAGING_INCDIR}/lzo1a.h + install -m 0644 include/lzo1b.h ${STAGING_INCDIR}/lzo1b.h + install -m 0644 include/lzo1c.h ${STAGING_INCDIR}/lzo1c.h + install -m 0644 include/lzo1f.h ${STAGING_INCDIR}/lzo1f.h + install -m 0644 include/lzo1x.h ${STAGING_INCDIR}/lzo1x.h + install -m 0644 include/lzo1y.h ${STAGING_INCDIR}/lzo1y.h + install -m 0644 include/lzo1z.h ${STAGING_INCDIR}/lzo1z.h + install -m 0644 include/lzo2a.h ${STAGING_INCDIR}/lzo2a.h + install -m 0644 include/lzoconf.h ${STAGING_INCDIR}/lzoconf.h + install -m 0644 include/lzoutil.h ${STAGING_INCDIR}/lzoutil.h install -m 0755 src/.libs/liblzo.so.1.0.0 ${STAGING_LIBDIR}/liblszo.so.1.0.0 ln -sf liblzo.so.1.0.0 ${STAGING_LIBDIR}/liblzo.so.1 |