mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
638 B
Bash
28 lines
638 B
Bash
# $Id$
|
|
# Maintainer : speps <speps at aur dot archlinux dot org>
|
|
# Contributor: DonVla <donvla@users.sourceforge.net>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - delete prepare function that set SSE build flags
|
|
|
|
pkgname=caps
|
|
pkgver=0.9.23
|
|
pkgrel=1
|
|
pkgdesc="The LADSPA C* Audio Plugin Suite"
|
|
arch=('i686' 'x86_64')
|
|
url="http://quitte.de/dsp/caps.html"
|
|
license=('GPL3')
|
|
groups=('ladspa-plugins')
|
|
depends=('ladspa')
|
|
source=("http://quitte.de/dsp/caps_$pkgver.tar.bz2")
|
|
md5sums=('b7792c3977ac471ebcfced0ed52710d5')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make PREFIX="$pkgdir/usr" install
|
|
}
|