summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3632fd2200e362c363226e6e3126e4cdb72e5095 (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
# Stdcdec program to demodulate, decode and parse Inmarsat-C signals
# Maintainer: cropinghigh <joinmark60@gmail.com>
pkgname=stdcdec-git
pkgver=1.0
pkgrel=1
arch=('i686' 'x86_64')
pkgdesc="Stdcdec program to demodulate, decode and parse Inmarsat-C signals"
license=('GPL')
depends=("libinmarsatc")
provides=("stdcdec")
source=("git://github.com/cropinghigh/stdcdec")
md5sums=('SKIP')

build() {
    cd $srcdir/stdcdec
    mkdir build
    cd build
    cmake ..
    make
}

package() {
    cd $srcdir/stdcdec/build
    make DESTDIR="$pkgdir/" install
}