contrib/openvswitch/Pkgfile

22 lines
538 B
Plaintext
Raw Normal View History

2020-06-08 20:44:51 +02:00
# Description: multilayer virtual software switch
2014-01-30 22:52:52 +01:00
# URL: http://openvswitch.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
2020-06-08 20:44:51 +02:00
# Depends on: python3-six
2014-01-30 22:52:52 +01:00
name=openvswitch
2020-06-08 20:44:51 +02:00
version=2.13.0
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 \
--sysconfdir=/etc \
2020-06-08 20:44:51 +02:00
--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
}