Another pass of .oe cleanups.
[vuplus_openembedded] / libogg / libogg_1.1.oe
1 SECTION = "libs"
2 RDEPENDS = "libc6"
3 DEPENDS = "virtual/libc"
4 DESCRIPTION = "libogg is the bitstream and framing library \
5 for the Ogg project. It provides functions which are \
6 necessary to codec libraries like libvorbis."
7
8 SRC_URI = "http://www.vorbis.com/files/1.0.1/unix/libogg-${PV}.tar.gz"
9
10 inherit autotools libtool
11
12 do_stage () {
13         install -m 0644 src/.libs/libogg.a ${STAGING_LIBDIR}/
14         install -m 0644 src/.libs/libogg.lai ${STAGING_LIBDIR}/libogg.la
15         oe_soinstall src/.libs/libogg.so.0.5.0 ${STAGING_LIBDIR}/
16
17         install -d ${STAGING_INCDIR}/ogg
18         (cd ${S}/include/ogg; cp config_types.h ogg.h os_types.h ${STAGING_INCDIR}/ogg/)
19 }