diff options
author | Phil Blundell <philb@gnu.org> | 2008-08-29 13:48:48 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2008-08-29 13:48:48 +0000 |
commit | a11471ceda7613108917fa99120923a86e3076a4 (patch) | |
tree | 43f8172a58909b1214dd7d9b246887cb14f9e1d5 /packages/c-ares | |
parent | 92bc1fb9505921d5fcf1fa8d812813ced63d991c (diff) |
c-ares: add 1.5.3
Diffstat (limited to 'packages/c-ares')
-rw-r--r-- | packages/c-ares/c-ares_1.5.3.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/c-ares/c-ares_1.5.3.bb b/packages/c-ares/c-ares_1.5.3.bb new file mode 100644 index 0000000000..9098a9cb31 --- /dev/null +++ b/packages/c-ares/c-ares_1.5.3.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/ +} + |