blob: c7aae9360828f164c340a4f6f664297eeda503da (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# Maintainer: Fredy GarcĂa <frealgagu at gmail dot com>
pkgname=linphone-desktop-all-git
pkgver=4.1.1.r520.b2e96277
pkgrel=3
pkgdesc="A free VoIP and video softphone based on the SIP protocol (Installed in /opt with all deps included)."
arch=("x86_64")
url="https://www.${pkgname%-desktop-all-git}.org/"
license=("GPL2")
depends=("qt5-base" "qt5-graphicaleffects" "qt5-quickcontrols" "qt5-quickcontrols2" "qt5-svg" "qt5-tools")
makedepends=("cmake" "doxygen" "git" "graphviz" "ladspa" "python-pystache" "yasm")
conflicts=("linphone-dekstop")
source=("${pkgname%-all-git}::git://git.${pkgname%-desktop-all-git}.org/${pkgname%-all-git}"
"${pkgname%-desktop-all-git}.desktop"
"${pkgname%-all-git}-submodules.patch")
sha256sums=("SKIP"
"0a3212622757639905b0d82bcb2b4ebfef11dc7312011c4413334db70ca2e1e6"
"2896ee561bae9a99277202d715999b1b4b1597da025e11f47570a9c097cee4c9")
prepare() {
cd "${srcdir}/${pkgname%-all-git}"
msg2 "Synchronizing submodules..."
git submodule sync
msg2 "Updating submodules..."
git submodule update --init --recursive
#git submodule --quiet foreach --recursive 'git diff --src-prefix=a/${name}/ --dst-prefix=b/${name}/' > submodules.patch
patch -Np1 -i "../${pkgname%-all-git}-submodules.patch"
}
pkgver() {
cd "${srcdir}/${pkgname%-all-git}"
(
set -o pipefail
git describe --long --tags 2> /dev/null | sed "s/^[a-Z\.\-]*//;s/\([^-]*-\)g/r\1/;s/-/./g" ||
printf "r%s.%s\n" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
cd "${srcdir}/${pkgname%-all-git}"
msg2 "Removing possible possible link in /tmp/linphone-desktop ..."
rm -rf "/tmp/${pkgname%-all-git}"
msg2 "Moving source files to /tmp/linphone-desktop ..."
mv "${srcdir}/${pkgname%-all-git}" "/tmp/"
msg2 "Preparing build..."
cd "/tmp/${pkgname%-all-git}"
./prepare.py -c
./prepare.py --list-cmake-variables -DENABLE_RELATIVE_PREFIX=YES
msg2 "Building..."
make
msg2 "Leaving installation files as expected..."
mv "/tmp/${pkgname%-all-git}" "${srcdir}"
}
package() {
cd "${srcdir}/${pkgname%-all-git}"
msg2 "Installing desktop file into /usr/share/applications/"
install -D -m 0644 "${srcdir}/${pkgname%-desktop-all-git}.desktop" "${pkgdir}/usr/share/applications/${pkgname%-desktop-all-git}.desktop"
msg2 "Installing in /opt"
install -d "${pkgdir}/opt"
cp -r "OUTPUT/desktop" "${pkgdir}/opt/${pkgname%-all-git}"
msg2 "Installing icons"
install -d "${pkgdir}/usr/share"
mv "${pkgdir}/opt/${pkgname%-all-git}/share/icons" "${pkgdir}/usr/share"
#cp -r "OUTPUT/desktop" "${pkgdir}/usr"
#Conflicting packages if installed in /usr
#bcmatroska2-git
#bctoolbox-git
#belcard-git
#belle-sip-git
#belr-git
#bzrtp-git
#ffmpeg
#gsm
#libsrtp
#libvpx
#libxml2
#linphone-desktop-git
#linphone-git
#mbedtls
#mediastreamer-git
#minizip-git
#opus
#ortp-git
#speex
#speexdsp
#sqlite
#v4l-utils
#zlib
}
|