summaryrefslogtreecommitdiffstats
path: root/recipes-test/oftest/oftest_git.bb
blob: 299c693ef410b99b25e9bd90169fe7d6dbea9c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
SUMMARY = "OFTest"
DESCRIPTION = "OFTest - an OpenFlow test framework for switches"
HOMEPAGE = "http://www.projectfloodlight.org/oftest"
SECTION = "networking"
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7ad8e1e5f1c3d0004a6d449dbce36efe"

PR = "1"
PV = "0"
RDEPENDS_${PN} = "python-scapy"

inherit autotools

SRCREV = "47544e410531732ee3603c5dfd255770009a9d96"
SRC_URI = "git://github.com/floodlight/oftest \
          "

S = "${WORKDIR}/git"
B = "${S}"

PACKAGES = "${PN}"
FILES_${PN} += "/opt/${PN}"

do_install() {
    install -d ${D}/opt/${PN}
    cp -r ${S}/* ${D}/opt/${PN}
}