blob: c67cced1b7aac11e5a3f83ff86b9893f6e553397 (
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
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Andrea Pierangeli <andrea.pierangeli@gmail.com>
# Contributor: Xavier Devlamynck <magicrhesus@ouranos.be>
# Contributor: Marti Raudsepp <marti@juffo.org>
# Contributor: Travis Hegner <travis.hegner@gmail.com>
pkgbase=pjproject
pkgname=("$pkgbase" "python-$pkgbase")
pkgver=2.14.1
pkgrel=2
pkgdesc='Open source SIP stack and media stack'
arch=(x86_64 aarch64 armv7h i686)
url='https://www.pjsip.org/'
license=(GPL-2.0-only)
_pkgdepends=(alsa-lib
ffmpeg
libsamplerate
libsrtp
libyuv
openssl
opus
portaudio
speex
util-linux)
_libdepends=(python)
makedepends=("${_pkgdepends[@]}"
"${_libdepends[@]}"
e2fsprogs
python-{build,installer,wheel}
python-setuptools
swig)
_archive="$pkgbase-$pkgver"
_repourl="https://github.com/pjsip/$pkgbase"
source=("$_archive.tar.gz::$_repourl/archive/$pkgver.tar.gz"
0001-Don-t-build-Java-bindings.patch
config_site.h)
sha256sums=('6140f7a97e318caa89c17e8d5468599671c6eed12d64a7c160dac879ba004c68'
'c6673d97185c2383140b6d915aeaa7e525c9cfb5f51c097472cf4773b4f87ab4'
'61fa2a76d069aa5c95b6e2c539f7b20e2ccf0b126fc60c18117762541d0a7472')
prepare() {
cd "$_archive"
patch -Np1 < "../${source[1]}"
install -Dm644 -t "pjlib/include/pj/" "../${source[2]}"
}
build() {
cd "$_archive"
export CXXFLAGS="$CXXFLAGS -fPIC"
if [ "$CARCH" = 'aarch64' ]; then
arch_opts=(--disable-libwebrtc)
fi
if [ "$CARCH" = 'i686' ]; then
export CXXFLAGS="$CXXFLAGS -march=i686"
arch_opts=(--disable-libwebrtc)
fi
export CFLAGS="$CFLAGS -fPIC -DNDEBUG"
./configure \
--prefix=/usr \
--with-external-speex \
--with-external-srtp \
--with-external-pa \
--with-external-gsm \
--with-external-yuv \
--enable-shared \
--disable-opencore-amr \
"${arch_opts[@]}"
make dep
make
make -C pjsip-apps/src/swig
pushd 'pjsip-apps/src/swig/python'
python -m build -wn
}
package_pjproject() {
depends=("${_pkgdepends[@]}")
optdepends=(e2fsprogs "python-$pkgbase: Python bindings")
cd "$_archive"
make -j1 DESTDIR="$pkgdir" install
install -Dm755 pjsip-apps/bin/pjsua-*gnu* "$pkgdir/usr/bin/pjsua"
}
package_python-pjproject() {
depends=("$pkgbase" "${_libdepends[@]}")
pushd "$_archive/pjsip-apps/src/swig/python"
python -m installer -d "$pkgdir" dist/*.whl
}
|