mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
32 lines
882 B
Bash
32 lines
882 B
Bash
# $Id$
|
|
# Maintainer: Alexander F Rødseth <xyproto@archlinux.org>
|
|
# Contributor: Ray Rashif <schiv@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - remove --enable-sse from configure
|
|
|
|
pkgname=calf
|
|
pkgver=0.90.0
|
|
pkgrel=1
|
|
pkgdesc='LV2/DSSI/LADSPA plug-ins suite and standalone JACK host'
|
|
arch=('x86_64' 'i686')
|
|
url='https://calf-studio-gear.org/'
|
|
license=('LGPL')
|
|
depends=('dssi' 'fftw' 'fluidsynth' 'lash' 'libglade')
|
|
makedepends=('ladspa' 'lv2')
|
|
source=("https://calf-studio-gear.org/files/$pkgname-$pkgver.tar.gz")
|
|
sha256sums=('2b32007c4769b0bcc9898c088d26562b1ab1d57a68130d0235e7d27da4d83236')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr --enable-experimental
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# getver: raw.githubusercontent.com/calf-studio-gear/calf/master/configure.ac
|
|
# vim: ts=2 sw=2 et:
|