blob: 47458659acae40a9aba5f19eac59d4b22411c499 (
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
|
# Maintainer: not_anonymous <nmlibertarian@gmail.com>
pkgname=flxmlrpc
pkgver=1.0.1
pkgrel=3
pkgdesc="XMLRPC for fldigi and other Ham Radio apps"
arch=('i686' 'x86_64' 'aarch64')
url="http://www.w1hkj.com/downloads/flxmlrpc/"
license=('GPL3')
depends=('gcc-libs')
makedepends=('git' 'automake' 'autoconf' 'pkg-config')
source=("$pkgname-$pkgver::git+https://git.code.sf.net/p/fldigi/flxmlrpc#tag=v$pkgver")
#"http://www.w1hkj.com/downloads/$pkgname/$pkgname-$pkgver.tar.gz")
build() {
cd $pkgname-$pkgver
autoreconf --install
./configure --prefix=/usr
}
check() {
cd "$srcdir"/$pkgname-$pkgver
make -k check
}
package() {
cd "$srcdir"/$pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
md5sums=('SKIP')
sha256sums=('SKIP')
|