898d6d6ff739f2aa3505eb4f8764bc7196072782
[vuplus_openembedded] / libogg / libogg_1.0.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/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         install -m 0644 src/.libs/libogg.so.0.4.0 ${STAGING_LIBDIR}/
16         ln -sf libogg.so.0.4.0 ${STAGING_LIBDIR}/libogg.so.0
17         ln -sf libogg.so.0.4.0 ${STAGING_LIBDIR}/libogg.so
18
19         install -d ${STAGING_DIR}/target/include/ogg
20         (cd include/ogg; cp config_types.h ogg.h os_types.h ${STAGING_DIR}/target/include/ogg/)
21 }