summaryrefslogtreecommitdiff
path: root/curl
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-01-14 05:35:31 +0000
committerChris Larson <clarson@kergoth.com>2004-01-14 05:35:31 +0000
commit1346f15d9a2e274a60a141ce1142ce1f4f92037d (patch)
tree14f7a790992da9e851621b198c5c5473fe193a95 /curl
parent2abf9538ddf577d5ceaee8308a550ae68e91e32a (diff)
Add stage target to curl, which fixes the vorbis-tools build, and moved vorbis-tools out of nonworking.
BKrev: 4004d523BxpGYchnnFd8fzKEZZmiLw
Diffstat (limited to 'curl')
-rw-r--r--curl/curl_7.10.8.oe19
1 files changed, 19 insertions, 0 deletions
diff --git a/curl/curl_7.10.8.oe b/curl/curl_7.10.8.oe
index e69de29bb2..0ba55c7974 100644
--- a/curl/curl_7.10.8.oe
+++ b/curl/curl_7.10.8.oe
@@ -0,0 +1,19 @@
+DEPENDS = virtual/libc zlib
+RDEPENDS = libc6 zlib
+
+SRC_URI = http://curl.haxx.se/download/curl-${PV}.tar.bz2
+
+inherit autotools libtool
+
+EXTRA_OECONF = '--with-zlib=${STAGING_LIBDIR}/../ \
+ --without-ssl --with-random=/dev/urandom'
+
+do_stage () {
+ install -d ${STAGING_INCDIR}/curl
+ install -m 0644 ${S}/include/curl/*.h ${STAGING_INCDIR}/curl/
+ install -m 0755 ${S}/lib/.libs/libcurl.so.2.0.2 ${STAGING_LIBDIR}/
+ ln -sf libcurl.so.2.0.2 ${STAGING_LIBDIR}/libcurl.so.2
+ ln -sf libcurl.so.2.0.2 ${STAGING_LIBDIR}/libcurl.so
+ install -m 0644 ${S}/lib/.libs/libcurl.a ${STAGING_LIBDIR}/
+ install -m 0644 ${S}/lib/.libs/libcurl.lai ${STAGING_LIBDIR}/libcurl.la
+}