24 lines
457 B
Plaintext
24 lines
457 B
Plaintext
|
# Tanım: Tox protokolü üzerinden tünel TCP bağlantıları
|
|||
|
# URL: http://tuntox.pl/
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler: cscope toxcore
|
|||
|
|
|||
|
isim=tuntox
|
|||
|
surum=git
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(shared-build.patch)
|
|||
|
derle() {
|
|||
|
if [ ! -d $DERLEME_KAYNAKDIZIN/$isim.git ];then
|
|||
|
git clone https://github.com/gjedeer/$isim.git
|
|||
|
else
|
|||
|
cd $DERLEME_KAYNAKDIZIN/$isim.git
|
|||
|
git pull
|
|||
|
cd -
|
|||
|
fi
|
|||
|
cd $isim
|
|||
|
patch -p1 -i ../shared-build.patch
|
|||
|
make
|
|||
|
install -Dm755 tuntox "$PKG/usr/bin/tuntox"
|
|||
|
}
|