desktop/qtox/PKGBUILD

38 lines
1.1 KiB
Bash
Raw Normal View History

pkgname=qtox
_pkgname=qTox
2018-03-19 16:10:38 +08:00
pkgver=1.14.0
pkgrel=1
pkgdesc='Powerful Tox client written in C++/Qt that follows the Tox design guidelines'
arch=('x86_64')
url='https://github.com/tux3/qTox'
screenshot="https://camo.githubusercontent.com/22edee6a50bd284bd985ed7b219d57130e5241c8/687474703a2f2f692e696d6775722e636f6d2f363641524247432e706e67"
license=('GPL3')
2018-03-19 16:10:38 +08:00
depends=('libxss' 'desktop-file-utils' 'openal' 'ffmpeg' 'qrencode' 'qt5-svg' 'sqlcipher' 'toxcore' 'libexif' 'qt5-base')
makedepends=('qt5-tools' 'cmake' 'check' 'pkg-config')
provides=('qtox')
conflicts=('qtox-git')
replaces=('qtox-git')
source=("https://github.com/$_pkgname/$_pkgname/archive/v$pkgver.tar.gz")
2018-03-19 16:10:38 +08:00
sha512sums=('efe0f281bffa56b27672beacc5ca9ad257fd28c6d70472cb1f7f070cb7409a3b1d53e7e86d795ae80b93cb7061124c8b9bda31ba90fce76e0a97957886c51ed1')
build() {
cd $_pkgname-$pkgver
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_GTK_SYSTRAY=False
make
}
check() {
cd $_pkgname-$pkgver
cd build
make test
}
package() {
# executable
cd $_pkgname-$pkgver/build
make DESTDIR=$pkgdir install
}