diff options
author | Phil Blundell <philb@gnu.org> | 2008-08-06 16:23:06 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2008-08-06 16:23:06 +0000 |
commit | 50021052e0be3c00acadd7389f248e7ad96b8d73 (patch) | |
tree | 685029bfb592f9b1793b1c1bf08f5118c6d6c83e | |
parent | a1caeecbb2be20374caab2425a2c6820d012e4bc (diff) | |
parent | 81b758a90b6beff48f81c1e0c66ec699ca70aabb (diff) |
merge of '3a0cedcbc0fec5fa2d459675679087748945554a'
and '542045dc0960cdd026c811bc69c1db6934531925'
-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/ +} + |