summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 16845935dc3303b39529a150b26ff960832dad05 (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: Vasile Vilvoiu <vasi.vilvoiu@gmail.com>
pkgname=specgram-git
pkgver=20230506
pkgrel=1
pkgdesc="Small program that computes and plots spectrograms, either in a live window or to disk, with support for stdin input."
arch=('x86_64')
url="https://github.com/rimio/specgram"
license=('MIT')
depends=('sfml' 'fftw')
makedepends=('git' 'cmake' 'gcc')
conflicts=('specgram')
source=("git+https://github.com/rimio/specgram.git")
md5sums=('SKIP')

build() {
	cd specgram
	cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
	make
}

package() {
	cd specgram
	make DESTDIR="$pkgdir/" install
}