diff options
author | Shane Wang <shane.wang@intel.com> | 2012-03-14 16:40:07 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-21 13:03:44 +0000 |
commit | e556d90ca067e677261a71bb266e379fea0da842 (patch) | |
tree | f53824e71bc8b1529314b62eca8f793670617325 /meta/recipes-connectivity/libpcap/libpcap_1.2.1.bb | |
parent | 52365cc45fb54ac9dfba32bb9fa346b140c1fd7c (diff) | |
download | poky-e556d90ca067e677261a71bb266e379fea0da842.tar.gz |
libpcap: upgrade to 1.2.1
(From OE-Core rev: 98b9c17f2c236e1a23d9c74d93cb693b4d7b4d61)
Signed-off-by: Shane Wang <shane.wang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/libpcap/libpcap_1.2.1.bb')
-rw-r--r-- | meta/recipes-connectivity/libpcap/libpcap_1.2.1.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/libpcap/libpcap_1.2.1.bb b/meta/recipes-connectivity/libpcap/libpcap_1.2.1.bb new file mode 100644 index 0000000000..91bedf7280 --- /dev/null +++ b/meta/recipes-connectivity/libpcap/libpcap_1.2.1.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | require libpcap.inc | ||
2 | |||
3 | PR = "${INC_PR}.0" | ||
4 | |||
5 | SRC_URI += "file://aclocal.patch \ | ||
6 | file://ieee80215-arphrd.patch" | ||
7 | |||
8 | SRC_URI[md5sum] = "06046e0e81efc60566daf1cc96c77d46" | ||
9 | SRC_URI[sha256sum] = "a135a6ef7e539729a57c7ed345bdb9b64159e13404174006a7972eb33f00debd" | ||
10 | |||
11 | # | ||
12 | # make install doesn't cover the shared lib | ||
13 | # make install-shared is just broken (no symlinks) | ||
14 | # | ||
15 | do_install_prepend () { | ||
16 | install -d ${D}${libdir} | ||
17 | install -d ${D}${bindir} | ||
18 | oe_runmake install-shared DESTDIR=${D} | ||
19 | oe_libinstall -a -so libpcap ${D}${libdir} | ||
20 | } | ||