diff options
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/libteam/libteam_1.26.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libteam/libteam_1.26.bb b/meta-oe/recipes-support/libteam/libteam_1.26.bb new file mode 100644 index 000000000..2cb9e8f3f --- /dev/null +++ b/meta-oe/recipes-support/libteam/libteam_1.26.bb | |||
@@ -0,0 +1,33 @@ | |||
1 | SUMMARY = "Library for controlling team network device" | ||
2 | HOMEPAGE = "http://www.libteam.org/" | ||
3 | SECTION = "libs/network" | ||
4 | |||
5 | LICENSE = "LGPLv2.1" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
7 | |||
8 | DEPENDS = "libnl libdaemon jansson" | ||
9 | |||
10 | SRC_URI = "git://github.com/jpirko/libteam" | ||
11 | SRCREV = "8c1cea00a21950089058e4e33ea1f7bf4deaddeb" | ||
12 | |||
13 | SRC_URI[md5sum] = "565114d70c41bff6093d8e57be284e8a" | ||
14 | SRC_URI[sha256sum] = "d65286379141db141bea33424ec0507bb0f827a0bf03d9c65004bb593e3d5545" | ||
15 | |||
16 | S = "${WORKDIR}/git" | ||
17 | |||
18 | inherit autotools pkgconfig | ||
19 | |||
20 | FILES_${PN} = "${libdir}/libteam${SOLIBS} \ | ||
21 | " | ||
22 | |||
23 | PACKAGES += "${PN}-dctl ${PN}-utils" | ||
24 | FILES_${PN}-dctl = "${libdir}/libteamdctl${SOLIBS} \ | ||
25 | " | ||
26 | FILES_${PN}-utils = "${bindir}/bond2team \ | ||
27 | ${bindir}/teamd \ | ||
28 | ${bindir}/teamdctl \ | ||
29 | ${bindir}/teamnl \ | ||
30 | " | ||
31 | |||
32 | RDEPENDS_${PN}-utils = "bash" | ||
33 | |||