blob: 15b5008fc0ea7ee7334c34ffbdc9a721d6dd4599 (
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
|
# Maintainer: Guillaume Horel <guillaume.horel@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Darwin Bautista <djclue917@gmail.com>
pkgname=belle-sip-git
_pkgname=belle-sip
pkgver=5.2.0.alpha.r5.g635b163a
pkgrel=1
pkgdesc="A Voice-over-IP phone"
arch=('x86_64')
url="https://github.com/BelledonneCommunications/belle-sip/"
license=('GPL3')
depends=('avahi' 'bctoolbox-git' 'belr>=4.5.22')
makedepends=('cmake' 'git')
provides=("belle-sip=$pkgver")
conflicts=('belle-sip')
options=('!emptydirs')
source=("git+https://github.com/BelledonneCommunications/belle-sip.git")
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/; s/-/./g'
}
build() {
cmake -B build $_pkgname \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_STATIC=NO \
-DENABLE_MDNS=YES \
-DENABLE_STRICT=YES \
-DENABLE_TESTS=NO \
-Wno-dev
make -C build
}
package() {
make DESTDIR="$pkgdir" -C build install
}
|