talimat 817 B

123456789101112131415161718192021222324252627282930313233
  1. # Tanım: Üretim Kalitesi, Çok Katmanlı Açık Sanal Anahtar
  2. # URL: http://openvswitch.org
  3. # Paketçi: Cihan_Alkan
  4. # Gerekler: libcap-ng python-six
  5. # Grup: ağ
  6. isim=openvswitch
  7. surum=2.8.1
  8. devir=1
  9. kaynak=(http://openvswitch.org/releases/openvswitch-$surum.tar.gz
  10. openvswitch.tmpfiles)
  11. derle() {
  12. cd "$SRC/$isim-$surum"
  13. sed -i \
  14. -e 's|$(sysconfdir)/bash_completion.d|/usr/share/bash-completion/completions|g' \
  15. Makefile.am
  16. ./boot.sh
  17. ./configure \
  18. --prefix=/usr \
  19. --sysconfdir=/etc \
  20. --localstatedir=/var \
  21. --with-rundir=/run/openvswitch \
  22. --sbindir=/usr/bin \
  23. PYTHON=/usr/bin/python
  24. make
  25. make DESTDIR="$PKG" install
  26. install -Dm0644 "$SRC"/openvswitch.tmpfiles "$PKG/usr/lib/tmpfiles.d/openvswitch.conf"
  27. install -dm0755 "$PKG/etc/openvswitch"
  28. rm -rf "$PKG"/run
  29. }