diff options
author | Phil Blundell <philb@gnu.org> | 2008-08-06 16:22:39 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2008-08-06 16:22:39 +0000 |
commit | 81b758a90b6beff48f81c1e0c66ec699ca70aabb (patch) | |
tree | 8641c0a476617b4e5d1e6a9906fc02fa07b7ebec /packages | |
parent | 2851d9baebad7488f5fbad732f57996c0d92b59b (diff) |
c-ares: update to 1.5.2
Diffstat (limited to 'packages')
-rw-r--r-- | packages/c-ares/c-ares_1.5.2.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/c-ares/c-ares_1.5.2.bb b/packages/c-ares/c-ares_1.5.2.bb new file mode 100644 index 0000000000..9098a9cb31 --- /dev/null +++ b/packages/c-ares/c-ares_1.5.2.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "c-ares is a C library that resolves names asynchronously." +HOMEPAGE = "http://daniel.haxx.se/projects/c-ares/" +SECTION = "libs" +SRC_URI = "http://daniel.haxx.se/projects/c-ares/c-ares-${PV}.tar.gz" +LICENSE = "MIT" +S = "${WORKDIR}/c-ares-${PV}" + +inherit autotools + +do_stage() { + oe_libinstall -C .libs -a libcares ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR}/ares + install -m 0644 ares*.h ${STAGING_INCDIR}/ares/ +} + |