diff options
author | Rene Wagner <rw@handhelds.org> | 2004-10-24 00:22:25 +0000 |
---|---|---|
committer | Rene Wagner <rw@handhelds.org> | 2004-10-24 00:22:25 +0000 |
commit | 5223dad0c23dfcde7e345a3512fafc7fe211ce9b (patch) | |
tree | cba356395f9b8ae18193303189a6b37e95e88573 /curl/curl_7.12.2.oe | |
parent | 430c1d9dfb3805d66d0cce13e2665b39bcb99081 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages-devel
into sugarcube.dyndns.org:/home2/oe/oe/packages
2004/10/23 21:23:26+02:00 dyndns.org!reenoo
curl: package libcurl separately
BKrev: 417af5c1so1lijs9CVWsoOU04xBwlA
Diffstat (limited to 'curl/curl_7.12.2.oe')
-rw-r--r-- | curl/curl_7.12.2.oe | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/curl/curl_7.12.2.oe b/curl/curl_7.12.2.oe index e69de29bb2..6ab389dd5c 100644 --- a/curl/curl_7.12.2.oe +++ b/curl/curl_7.12.2.oe @@ -0,0 +1,42 @@ +# NOTE: FIXME: curl puts its LDFLAGS in its curl-config and curl.pc files. +# This is flawed, as the LDFLAGS are often overridden by the user, and in +# addition, are generally specific to the *build* environment, not target. +# curl's build should be fixed to manipulate LIBS where appropriate and +# use that. -CL + +DEPENDS = "zlib" +DESCRIPTION = "Command line tool and library for \ +client-side URL transfers." +SECTION = "console/network" +PR = "r1" + +SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2" + +inherit autotools pkgconfig + +EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \ + --without-ssl --with-random=/dev/urandom" + +PACKAGES = "curl curl-doc libcurl libcurl-dev libcurl-doc" +FILES_${PN} = "${bindir}/curl" +FILES_${PN}-doc = "${mandir}/man1/curl.1" +FILES_lib${PN} = "${libdir}/lib*.so.*" +FILES_lib${PN}-dev = "${includedir} \ + ${libdir}/lib*.so \ + ${libdir}/lib*.a \ + ${libdir}/lib*.la \ + ${libdir}/pkgconfig \ + ${datadir}/aclocal \ + ${bindir}/*-config" +FILES_lib${PN}-doc = "${mandir}/man3 \ + ${mandir}/man1/curl-config.1" + +do_stage () { + install -d ${STAGING_INCDIR}/curl + install -m 0644 ${S}/include/curl/*.h ${STAGING_INCDIR}/curl/ + oe_libinstall -so -a -C lib libcurl ${STAGING_LIBDIR} + + cat curl-config | sed -e "s,-I/usr/include,-I${STAGING_INCDIR}/," \ + | sed -e "s,-L/usr/lib , , "> ${STAGING_BINDIR}/curl-config + chmod a+rx ${STAGING_BINDIR}/curl-config +} |