blob: 91656e0352fca1e274aa4887c308c8e4ee89a42f (
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=r1827.c0fef78
pkgrel=1
pkgdesc="Powerful QT Tox client that tries to follow the Tox UI guidlines"
arch=('i686' 'x86_64')
url="https://github.com/tux3/qTox"
license=('GPL3')
depends=('desktop-file-utils'
'filter_audio-git'
'libxkbcommon-x11'
'libxss'
'opencv'
'openal'
'qt5-base'
'tox-git>=r3070')
makedepends=('git' 'qt5-tools')
provides=("$_pkgname")
conflicts=("$_pkgname")
replaces=("$_pkgname")
install="${pkgname}.install"
source=("${_pkgname}::git+${url}.git")
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() {
cd $_pkgname
# executable
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
}
|