contrib/openvswitch/Pkgfile

22 lines
494 B
Plaintext
Raw Normal View History

2020-06-08 20:44:51 +02:00
# Description: multilayer virtual software switch
2021-02-15 11:16:32 +01:00
# URL: http://openvswitch.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-six
2014-01-30 22:52:52 +01:00
name=openvswitch
2022-12-04 11:02:00 +01:00
version=3.0.2
2014-01-30 22:52:52 +01:00
release=1
source=(http://openvswitch.org/releases/openvswitch-$version.tar.gz ovsd)
build() {
cd $name-$version
./configure --prefix=/usr \
2021-02-15 11:16:32 +01:00
--sysconfdir=/etc \
--localstatedir=/var \
PYTHON=/usr/bin/python3
2014-01-30 22:52:52 +01:00
make
make install DESTDIR=$PKG
install -D $SRC/ovsd $PKG/etc/rc.d/ovsd
2014-01-30 22:52:52 +01:00
}