summaryrefslogtreecommitdiffstats
path: root/recipes-networking/openflow/openflow_1.0.bb
blob: 20a2bc9502b910af700a8d4e64b9c22c4b036c72 (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
28
29
SUMMARY = "OpenFlow"
DESCRIPTION = "Provide a generic framework for handling devices in userspace."
HOMEPAGE = "http://www.openflow.org"
SECTION = "networking"
LICENSE = "GPLv2"

LIC_FILES_CHKSUM = "file://COPYING;md5=e870c934e2c3d6ccf085fd7cf0a1e2e2"

SRCREV = "5ccca75a69f99791659bcfbcf35353ab1921320a"
PR = "r0"
PV = "1.0+git${SRCPV}"

SRC_URI = "git://gitosis.stanford.edu/openflow.git;protocol=git"

DEPENDS = "virtual/libc"

EXTRA_OECONF += "KARCH=${TARGET_ARCH}"

PACKAGECONFIG ??= "libssl"
PACKAGECONFIG[libssl] = "--enable-ssl,--disable-ssl, openssl, libssl"

S = "${WORKDIR}/git"

inherit autotools

do_install_append() {
	# Remove /var/run as it is created on startup
        rm -rf ${D}${localstatedir}/run
}