blob: 8061fde05678f061917c02d7577709b30c299e4b (
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
|
# Maintainer: not_anonymous <nmlibertarian@gmail.com>
# Previous Maintainers: Andreas Schreiner <andreas.schreiner@sonnenmulde.at>
# and: [Vitaliy Berdinskikh](mailto:ur6lad@archlinux.org.ua) aka UR6LAD
# Original Submission: Bob Finch <w9ya@qrparci.net>
pkgname=fldigi
pkgver=4.2.06
pkgrel=1
pkgdesc="Digital Modem Program for Amateur Radio"
arch=('i686' 'x86_64' 'aarch64')
url="http://w1hkj.com"
license=('GPL-2.0-or-later')
depends=('cty' 'fltk' 'libsamplerate' 'flxmlrpc>=1.0.1' 'libsndfile'
'portaudio' 'libpulse' 'hamlib' 'hamradio-menus')
optdepends=('pulseaudio: pulseaudio support')
source=(http://w1hkj.com/files/$pkgname/$pkgname-$pkgver.tar.gz)
build() {
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr \
--enable-tls --with-flxmlrpc --without-asciidoc
# --enable-tls --without-flxmlrpc --without-asciidoc
# (^^^ temporary, until flxmlrpc is updated)
make ASCIIDOC_ICONS_DIR=/etc/asciidoc/images/icons/
}
check() {
cd "$srcdir"/$pkgname-$pkgver
make -k check
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
md5sums=('197b3af44708bdc3a54e5154b3bd3410')
sha256sums=('4360de225d6f8cfeb9bb6a5be6ac492e52702c8f704f87609c452d3bcb1b6c08')
|