aboutsummaryrefslogtreecommitdiffstats
path: root/libogg
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-11-30 02:26:22 +0000
committerChris Larson <clarson@kergoth.com>2003-11-30 02:26:22 +0000
commite9e83232583886db8881345c51ada729966138bf (patch)
tree1cd5a8c53a5e283663a1873246f0aff23a38019a /libogg
parentffd74681cdcbb7ed936745cb77a031af7cded8d9 (diff)
downloadopenembedded-e9e83232583886db8881345c51ada729966138bf.tar.gz
Merge openembedded@openembedded.bkbits.net:packages
into direwolf.ppp.ti.com:/home/kergoth/coding/projects/user/oe-metadata/packages 2003/11/29 20:25:42-06:00 ti.com!kergoth Depends fixes in evas, x11-cvs, and epeg. BKrev: 3fc9554e5H-aGbQ7R0BkgrHNSqX2Ag
Diffstat (limited to 'libogg')
-rw-r--r--libogg/libogg_1.0.oe21
1 files changed, 21 insertions, 0 deletions
diff --git a/libogg/libogg_1.0.oe b/libogg/libogg_1.0.oe
index e69de29bb2..08b276df84 100644
--- a/libogg/libogg_1.0.oe
+++ b/libogg/libogg_1.0.oe
@@ -0,0 +1,21 @@
+SECTION=libs
+RDEPENDS=libc6
+DEPENDS=virtual/libc
+
+SRC_URI = http://www.vorbis.com/files/1.0/unix/libogg-${PV}.tar.gz
+
+inherit autotools libtool
+
+do_stage () {
+ install -m 0644 src/.libs/libogg.a ${STAGING_LIBDIR}/
+ install -m 0644 src/.libs/libogg.lai ${STAGING_LIBDIR}/libogg.la
+ install -m 0644 src/.libs/libogg.so.0.4.0 ${STAGING_LIBDIR}/
+ ln -sf libogg.so.0.4.0 ${STAGING_LIBDIR}/libogg.so.0
+ ln -sf libogg.so.0.4.0 ${STAGING_LIBDIR}/libogg.so
+
+ install -d ${STAGING_DIR}/target/include/ogg
+ (cd include/ogg; cp config_types.h ogg.h os_types.h ${STAGING_DIR}/target/include/ogg/)
+
+ install -d ${STAGING_DIR}/share/aclocal
+ install -m 0644 ogg.m4 ${STAGING_DIR}/share/aclocal/ogg.m4
+}