aboutsummaryrefslogtreecommitdiffstats
path: root/curl
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-03-13 05:42:36 +0000
committerChris Larson <clarson@kergoth.com>2004-03-13 05:42:36 +0000
commit06f7d17e81de21a95e35b03453242bc62b05a6aa (patch)
treebc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /curl
parent4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff)
downloadopenembedded-06f7d17e81de21a95e35b03453242bc62b05a6aa.tar.gz
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'curl')
-rw-r--r--curl/curl_7.10.8.oe4
-rw-r--r--curl/curl_7.11.0.oe20
2 files changed, 22 insertions, 2 deletions
diff --git a/curl/curl_7.10.8.oe b/curl/curl_7.10.8.oe
index 56ec96c297..2c6f5f135d 100644
--- a/curl/curl_7.10.8.oe
+++ b/curl/curl_7.10.8.oe
@@ -1,5 +1,5 @@
-DEPENDS = virtual/libc zlib
-RDEPENDS = libc6 zlib
+DEPENDS = "virtual/libc zlib"
+RDEPENDS = "libc6 zlib"
SRC_URI = http://curl.haxx.se/download/curl-${PV}.tar.bz2
diff --git a/curl/curl_7.11.0.oe b/curl/curl_7.11.0.oe
index e69de29bb2..2c6f5f135d 100644
--- a/curl/curl_7.11.0.oe
+++ b/curl/curl_7.11.0.oe
@@ -0,0 +1,20 @@
+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
+ install -m 0755 curl-config ${STAGING_BINDIR}/
+}