blob: 297b9381526e1f8d594fcae0b19555868259cef4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Maintainer (Arch): Kevin MacMartin <prurigro at gmail dot com>
_pkgname=qtox
pkgname=$_pkgname-git
_pkgver=244d6da
pkgver=r2363.244d6da
pkgrel=1
pkgdesc='Powerful QT Tox client that tries to follow the Tox UI guidlines'
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h')
url='https://github.com/tux3/qTox'
license=('GPL3')
depends=(
'tox-git'
'desktop-file-utils'
'filter_audio-git'
'libxkbcommon-x11'
'libxss'
'opencv'
'qt5-svg'
'openal-soft-tox'
)
makedepends=('git' 'qt5-tools')
provides=("$_pkgname")
conflicts=("$_pkgname")
install=$pkgname.install
source=("$_pkgname::git+$url#commit=$_pkgver")
sha512sums=('SKIP')
pkgver() {
cd $_pkgname
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd $_pkgname
[[ -d './libs' ]] && rm -rf ./libs
install -d libs
ln -s /usr/lib libs/
ln -s /usr/include libs/
}
build() {
cd $_pkgname
install -d build
cd build
qmake-qt5 ..
make
}
package() {
# executable
cd $_pkgname
install -Dm755 build/$_pkgname "$pkgdir/usr/bin/$_pkgname"
# xdg desktop file
install -Dm644 qTox.desktop "$pkgdir/usr/share/applications/qTox.desktop"
# icons
cd img/icons
for _icon in *.png; do
_size=$(sed 's|^[^-]*-||;s|\.png||' <<< "$_icon")
install -Dm644 "$_icon" "$pkgdir/usr/share/icons/hicolor/$_size/apps/$_pkgname.png"
done
install -Dm644 $_pkgname.svg "$pkgdir/usr/share/icons/hicolor/scalable/apps/$_pkgname.png"
}
|