summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f320355c2f9b58e9ac72ab32ba1ae14ec8d9e90d (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
# Maintainer: éclairevoyant
# Contributor: Sefa Eyeoglu <contact at scrumplex dot net>
# Contributor: Alexandros Theodotou <alex at zrythm dot org>

pkgname=lsp-dsp-lib
pkgver=1.0.20
pkgrel=1
pkgdesc='DSP library for signal processing'
arch=(x86_64)
url='https://github.com/sadko4u/lsp-dsp-lib'
license=('LGPL3')
source=("$url/releases/download/$pkgver/$pkgname-src-$pkgver.tar.gz")
sha512sums=('beaf252dd9deeb02183287394c27cb089d17edba73e94c723256db39be050109cf769535ada6ca87e942af97464ca614f4cd813f03ab894e39f658e553ca0681')

build() {
  cd $pkgname

  make config PREFIX=/usr
  cat ./.config.mk
  #make fetch
  make
}

package() {
  make -C $pkgname DESTDIR="$pkgdir" install
}