summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 213156542db9f829f094401617b58b1d1ce02a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Nick Østergaard <oe.nick at gmail dot com>
pkgname=gnuais
pkgver=0.3.3
pkgrel=1
pkgdesc="Open source software for demodulating and decoding AIS messages"
arch=('x86' 'x86_64')
url="http://gnuais.sourceforge.net/"
license=('GPL2')
depends=('libpulse' 'curl' 'osm-gps-map' 'libmysqlclient')
makedepends=('cmake')
source=(https://github.com/rubund/gnuais/archive/$pkgver.zip)
md5sums=('b3ef68d11d79315864912699a0881d32')

build() {
	cd "$srcdir/$pkgname-$pkgver"
	cmake -DCMAKE_INSTALL_PREFIX=/usr .
	make
}

package() {
	cd "$srcdir/$pkgname-$pkgver"
	make DESTDIR="$pkgdir/" install
}