blob: b63e92bc359bc3395b5482d19b491499bea16098 (
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
|
# Maintainer: Daniel Plank <tyrolyean@escpe.net>
pkgname=trx
pkgver=0.5
pkgrel=2
pkgdesc="Realtime audio over IP"
arch=("x86_64" "i686" "aarch64" "amv7l")
url="http://www.pogo.org.uk/~mark/trx/"
license=('GPL')
depends=('opus' 'alsa-lib' 'ortp' 'bctoolbox')
provides=(trx)
source=("http://www.pogo.org.uk/~mark/$pkgname/releases/$pkgname-$pkgver.tar.gz"
"arch-makefile.patch")
sha512sums=('a374fb2c1ae42a695ae76433d5201cee1b31839fa0b7f8e4b72d5f89bad5f19d412ca69f8067d7a134e23945fca5a28911147782d00de048d080c9d7f3281dad'
'SKIP')
build() {
cd "${srcdir}/$pkgname-$pkgver"
patch Makefile "${srcdir}/arch-makefile.patch"
make all
}
package() {
cd "${srcdir}/$pkgname-$pkgver"
make DESTDIR="${pkgdir}" PREFIX=/usr install
}
|