blob: cbb9600d3512e74a7215926f661b3b1a9887c4d9 (
plain)
1 # Description: multilayer virtual software switch
2 # URL: http://openvswitch.org/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Depends on: python python-six
5
6 name=openvswitch
7 version=2.12.0
8 release=1
9 source=(http://openvswitch.org/releases/openvswitch-$version.tar.gz ovsd)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --sysconfdir=/etc \
15 --localstatedir=/var
16 make
17 make install DESTDIR=$PKG
18
19 install -D $SRC/ovsd $PKG/etc/rc.d/ovsd
20 }
|