diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-07-28 12:04:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-28 12:04:37 +0000 |
commit | a4fbaed8478be92b67649d81c2893b7a379c78df (patch) | |
tree | 82a44e40eca8050ab4adefa0b560a42039f389fd /packages/curl/curl_7.14.0.bb | |
parent | 8b28debedac76922183ab7d9c6cb21db46907732 (diff) |
add curl 7.14.0 and remove 7.12.2
Diffstat (limited to 'packages/curl/curl_7.14.0.bb')
-rw-r--r-- | packages/curl/curl_7.14.0.bb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/packages/curl/curl_7.14.0.bb b/packages/curl/curl_7.14.0.bb new file mode 100644 index 0000000000..1b8a88df84 --- /dev/null +++ b/packages/curl/curl_7.14.0.bb @@ -0,0 +1,44 @@ +# 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 + +DESCRIPTION = "Command line tool and library for \ +client-side URL transfers." +LICENSE = "MIT" +DEPENDS = "zlib" +SECTION = "console/network" +PR = "r0" + +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" + +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 +} + +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" + |