mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
added bootstrap script for linux/macx
This commit is contained in:
parent
1e740f93f7
commit
3547f93ca9
24
bootstrap.sh
Executable file
24
bootstrap.sh
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
|
||||
# directory where the script is located
|
||||
SCRIPT_NAME=$(readlink -f $0)
|
||||
SCRIPT_DIR=`dirname $SCRIPT_NAME`
|
||||
|
||||
# create libs dir if necessary
|
||||
mkdir -p ${SCRIPT_DIR}/libs
|
||||
|
||||
# clone current master of libtoxcore
|
||||
git clone https://github.com/irungentoo/toxcore.git ${SCRIPT_DIR}/libs/libtoxcore-latest
|
||||
|
||||
# compile and install libtoxcore
|
||||
pushd ${SCRIPT_DIR}/libs/libtoxcore-latest
|
||||
./autogen.sh
|
||||
./configure --prefix=${SCRIPT_DIR}/libs/
|
||||
make -j2
|
||||
make install
|
||||
popd
|
||||
|
||||
# remove clone dir
|
||||
rm -rf ${SCRIPT_DIR}/libs/libtoxcore-latest
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user