milis/talimatname/genel/opendht/talimat

31 lines
728 B
Plaintext
Raw Normal View History

2016-12-18 21:29:51 +01:00
# Description: A C++11 implementation of the Kademlia DHT (Distributed Hash Table)
# URL: https://github.com/savoirfairelinux/opendht
# packager: milisarge
2016-12-18 21:39:34 +01:00
# Depends on: cmake gnutls nettle msgpack-c python3-setuptools cython
2016-12-18 21:29:51 +01:00
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
}