contrib/openvswitch/Pkgfile

24 lines
497 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
2024-02-23 17:06:14 +01:00
version=3.3.0
2014-01-30 22:52:52 +01:00
release=1
2023-08-27 10:34:06 +02:00
source=(http://openvswitch.org/releases/openvswitch-$version.tar.gz
ovsd)
2014-01-30 22:52:52 +01:00
build() {
cd $name-$version
2023-08-27 10:34:06 +02:00
2014-01-30 22:52:52 +01:00
./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
}