diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-04-07 13:24:55 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-04-09 22:56:43 -0400 |
commit | 5c69bdef4ca0d8413477db32cc82b82395806504 (patch) | |
tree | a14223e0fef041c8c63b5179eb6f41aaa3db3e3b /recipes/curl/curl-target.inc | |
parent | cda3a2428521adac4749fc0c71afcedd50a9307a (diff) |
curl: move PACKAGES and FILES_* from the .inc file
this resolves the lockfile() trying to access the wrong directory
when building sdk version after target one was built
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Tom Rini <trini@embeddedalley.com>
Diffstat (limited to 'recipes/curl/curl-target.inc')
-rw-r--r-- | recipes/curl/curl-target.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes/curl/curl-target.inc b/recipes/curl/curl-target.inc new file mode 100644 index 0000000000..88877e51a0 --- /dev/null +++ b/recipes/curl/curl-target.inc @@ -0,0 +1,22 @@ +PACKAGES += "${PN}-certs libcurl libcurl-dev libcurl-doc" + +FILES_${PN} = "${bindir}/curl" + +FILES_${PN}-certs = "${datadir}/curl/curl-*" +PACKAGE_ARCH_${PN}-certs = "all" + +FILES_${PN}-doc = "${mandir}/man1/curl.1" + +FILES_lib${PN} = "${libdir}/lib*.so.*" +RRECOMMENDS_lib${PN} += "${PN}-certs" +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" + |