blob: 1e44738fd66215a7be4cf180ea9ba5efc7ce8580 (
plain)
1 # Description: multilayer virtual software switch
2 # URL: http://openvswitch.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-six
5
6 name=openvswitch
7 version=3.0.3
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 PYTHON=/usr/bin/python3
17 make
18 make install DESTDIR=$PKG
19
20 install -D $SRC/ovsd $PKG/etc/rc.d/ovsd
21 }
|