summaryrefslogtreecommitdiff
path: root/pcr/minimodem/PKGBUILD
blob: 48f7b51a3a637afe5b5a715583ecd5610b491c5f (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
# Maintainer: Luke R. <g4jc@openmailbox.org> GPG: rsa4096/3EAE8697

pkgname=minimodem
pkgver=0.23
pkgrel=1
pkgdesc="Minimodem is a command-line program which decodes (or generates) audio modem tones at any specified baud rate, using various framing protocols."
arch=('i686' 'x86_64')
url="http://www.whence.com/minimodem/"
license=('GPL3')
depends=('fftw' 'alsa-lib' 'libpulse' 'libsndfile')
makedepends=('gcc')
source=("http://www.whence.com/minimodem/$pkgname-$pkgver.tar.gz")
sha512sums=('e0de84cbfe350893c2142bfd31e664b13f85f48c4bb3e7cd34cb26e1ad190f46f389f22d0976ec56752ae221f2037ffb407f9947d99453b9e33bac639b503db3')

build() {
  cd $pkgname-$pkgver
	./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --sbindir=/usr/bin
	make
}

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