blob: 4d3ebf88fa861d59c003e819c9b6faeabe391e62 (
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
|
# Maintainer: Thomas Andres <thomas at andres dot in>
# Contributor: lynix <lynix47@gmail.com>
pkgname=linphone-desktop-appimage-stable
pkgver=5.2.2
pkgrel=1
pkgdesc="A free VoIP and video softphone based on the SIP protocol (AppImage version. Stable release)"
arch=('x86_64')
url='https://www.linphone.org'
license=('GPL2')
depends=('fuse2')
provides=('linphone-desktop=${pkgver}' 'linphone=${pkgver}')
conflicts=('linphone-desktop-appimage' 'linphone-desktop-all' 'linphone-desktop-git' 'linphone-desktop-all-git' 'linphone-git')
source=("https://www.linphone.org/releases/linux/app/Linphone-${pkgver}.AppImage"
'linphone.sh')
sha256sums=('SKIP'
'1238a372faa4d6de8569b508c95ac39b7d21d3619660740b3ac4306642076bd2')
options=(!strip)
_image="$(basename "${source[0]}")"
prepare() {
cd "${srcdir}"
chmod +x "${_image}"
./"${_image}" --appimage-extract
}
package() {
install -Dm755 "${srcdir}/${_image}" "${pkgdir}/opt/appimages/linphone.AppImage"
install -Dm755 "${srcdir}/linphone.sh" "${pkgdir}/usr/bin/linphone"
install -dm755 "${pkgdir}/usr/share/"
cp -r --no-preserve=mode,ownership "${srcdir}/squashfs-root/usr/share/icons" "${pkgdir}/usr/share/"
install -Dm644 "${srcdir}/squashfs-root/linphone.desktop" "${pkgdir}/usr/share/applications/linphone.desktop"
}
# vim:set ts=2 sw=2 et:
|