summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8a12101030852f3ad80e14515446f202d646ad82 (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
# Maintainer: Julio Diez <juliosddr@gmail.com>
_pkgname=suscan
pkgname="${_pkgname}-git"
pkgver=0.1
pkgrel=1
pkgdesc="SUScan is a graphical signal analysis tool"
arch=("any")
url="https://github.com/BatchDrake/suscan"
license=("GPL")
depends=("soapysdr" "sigutils-git" "git")
provides=("suscan")
conflicts=("suscan")
source=(suscan::git+https://github.com/BatchDrake/suscan.git)
md5sums=("SKIP")

build() {
  cd "$_pkgname"
  
  autoreconf -fvi

  ./configure --prefix=/usr
  make
}

package() {
  cd "$_pkgname"

  make DESTDIR="$pkgdir/" install
}