milis/talimatname/genel/opendht/talimat

31 lines
727 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: Kademlia DHT'nin (Distributed Hash Table) bir C ++ 11 uygulaması,
# URL: https://github.com/savoirfairelinux/opendht
# packager: milisarge
# Depends on: cmake gnutls nettle msgpack-c python3-setuptools cython
name=opendht
version=master
release=1
source=()
_source=https://github.com/savoirfairelinux/opendht
build() {
if [ ! -d $DERLEME_KAYNAKDIZIN/$name ];then
git clone $_source $DERLEME_KAYNAKDIZIN/$name
else
cd $DERLEME_KAYNAKDIZIN/$name
git pull
fi
cp -r $DERLEME_KAYNAKDIZIN/$name $SRC/
cd $SRC/$name
mkdir -p build
cd build
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DOPENDHT_PYTHON=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib
make
make DESTDIR=$PKG install
}