talimat 472 B

12345678910111213141516171819202122232425
  1. # Tanım: Tox protokolü üzerinden tünel TCP bağlantıları
  2. # URL: http://tuntox.pl/
  3. # Paketçi: milisarge
  4. # Gerekler: cscope toxcore
  5. # Gruplar: ağ
  6. isim=tuntox
  7. surum=git
  8. devir=1
  9. kaynak=(shared-build.patch)
  10. derle() {
  11. if [ ! -d $DERLEME_KAYNAKDIZIN/$isim.git ];then
  12. git clone https://github.com/gjedeer/$isim.git
  13. else
  14. cd $DERLEME_KAYNAKDIZIN/$isim.git
  15. git pull
  16. cd -
  17. fi
  18. cd $isim
  19. patch -p1 -i ../shared-build.patch
  20. make
  21. install -Dm755 tuntox "$PKG/usr/bin/tuntox"
  22. }