Browse Source

Merge branch 'master' of github.com:tux3/qTox

pull/2095/head
Marcelo Garlet Millani 10 years ago
parent
commit
385d7b782c
  1. 2
      INSTALL.md
  2. 7
      README.md
  3. 10
      simple_make.sh
  4. 6
      windows/bootstrap.sh

2
INSTALL.md

@ -165,7 +165,7 @@ sudo apt-get install libtool autotools-dev automake checkinstall check libopus-d
Fedora: Fedora:
```bash ```bash
sudo dnf install libtool autoconf automake check check-devel libsodium-devel sudo dnf install libtool autoconf automake check check-devel libsodium-devel opus-devel libvpx-devel
``` ```
openSUSE: openSUSE:

7
README.md

@ -8,10 +8,11 @@ qTox
<h5>qTox is a powerful Tox client that follows the Tox design guidelines while running on all major platforms:</h5> <h5>qTox is a powerful Tox client that follows the Tox design guidelines while running on all major platforms:</h5>
* **Windows**: * **Windows**:
- [**64 bit download**](#) - Currently unmaintained - [**64 bit download**](https://build.tox.chat/view/Clients/job/qTox_build_windows_x86-64_release/lastSuccessfulBuild/artifact/qTox_build_windows_x86-64_release.zip)
- [**32 bit download** (for older hardware)](#) - Currently unmaintained - [**32 bit download** (for older hardware)](https://build.tox.chat/view/Clients/job/qTox_build_windows_x86_release/lastSuccessfulBuild/artifact/qTox_build_windows_x86_release.zip)
* **Linux**: * **Linux**:
- [**binary**](#) - Currently unmaintained - [**64 bit download**](https://build.tox.chat/view/Clients/job/qTox_build_linux_x86-64_release/lastSuccessfulBuild/artifact/qTox_build_linux_x86-64_release.tar.xz)
- [**32 bit download**](https://build.tox.chat/view/Clients/job/qTox_build_linux_x86_release/lastSuccessfulBuild/artifact/qTox_build_linux_x86_release.tar.xz)
- [**packages**](/INSTALL.md#simple-install) - [**packages**](/INSTALL.md#simple-install)
- [**Gentoo overlay**](https://github.com/Tox/gentoo-overlay-tox) - [**Gentoo overlay**](https://github.com/Tox/gentoo-overlay-tox)
* **Mac**: [**download**](#) - Currently unmaintained<br/> * **Mac**: [**download**](#) - Currently unmaintained<br/>

10
simple_make.sh

@ -16,11 +16,17 @@ elif which dnf; then
"Development Tools" "Development Tools"
sudo dnf install \ sudo dnf install \
git qt-devel qt-doc qt-creator qt5-qtsvg opencv-devel \ git qt-devel qt-doc qt-creator qt5-qtsvg opencv-devel \
openal-soft-devel libXScrnSaver-devel qrencode-devel openal-soft-devel libXScrnSaver-devel qrencode-devel \
opus-devel libvpx-devel qt5-qttools-devel glib2-devel \
gdk-pixbuf2-devel gtk2-devel
else else
echo "Unknown package manager, attempting to compile anyways" echo "Unknown package manager, attempting to compile anyways"
fi fi
./bootstrap.sh ./bootstrap.sh
qmake if [ -e /etc/redhat-release ]; then
qmake-qt5
else
qmake
fi
make make

6
windows/bootstrap.sh

@ -19,13 +19,13 @@ cd $QTOX_DIR/libs
## toxcore ## toxcore
if [ ! -f "libtoxcore-win32-i686.zip" ]; then if [ ! -f "libtoxcore_build_windows_x86_shared_release.zip" ]; then
wget --no-check-certificate http://jenkins.libtoxcore.so/job/libtoxcore-win32-i686/lastSuccessfulBuild/artifact/libtoxcore-win32-i686.zip wget --no-check-certificate https://build.tox.chat/view/libtoxcore/job/libtoxcore_build_windows_x86_shared_release/lastSuccessfulBuild/artifact/libtoxcore_build_windows_x86_shared_release.zip
rm -rf include/tox rm -rf include/tox
fi fi
if [ ! -d "include/tox" ]; then if [ ! -d "include/tox" ]; then
$QTOX_DIR/tools/unzip -o libtoxcore-win32-i686.zip -d ./ $QTOX_DIR/tools/unzip -o libtoxcore_build_windows_x86_shared_release.zip -d ./
fi fi

Loading…
Cancel
Save