diff options
Diffstat (limited to 'curl/curl_7.12.0.oe')
-rw-r--r-- | curl/curl_7.12.0.oe | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/curl/curl_7.12.0.oe b/curl/curl_7.12.0.oe deleted file mode 100644 index 8c8d882741..0000000000 --- a/curl/curl_7.12.0.oe +++ /dev/null @@ -1,30 +0,0 @@ -# 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 \ - file://m4.patch;patch=1 \ - file://pkgconfig.patch;patch=1" - -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 -} |