Hi Orphan
Thanks for your contribution. I am new to Arch and in fact, I am new to Linux even though I have used BruteFIR for over 10 years! I am trying to install the latest brutefir-1.0m but have come across compilation problems
Basically, I have changed the PKGBUILD to the following:
pkgname=brutefir
pkgver=1.0m
pkgrel=1
pkgdesc="BruteFIR is a software convolution engine, a program for applying long FIR filters to multi-channel digital audio, either offline or in realtime."
arch=()
arch=('i686' 'x86_64')
url="http://www.ludd.luth.se/~torger/brutefir.html"
license=('GPL')
groups=()
depends=('fftw' 'alsa-lib' 'jack')
makedepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=(http://www.ludd.luth.se/~torger/files/$pkgname-$pkgver.tar.gz)
noextract=()
md5sums=(13e8fe1ad17a938c7ebfb3ecc0a18fd0)
build() {
cd "$srcdir/$pkgname-$pkgver"
sed 's@/usr/local@/usr@' -i Makefile
make || return 1
make DESTDIR="$pkgdir/" install
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}
any clues??
Search Criteria
Package Details: brutefir 1.0k-1
Package Actions
| Package Base: | brutefir |
|---|---|
| Description: | BruteFIR is a software convolution engine, a program for applying long FIR filters to multi-channel digital audio, either offline or in realtime. |
| Upstream URL: | http://www.ludd.luth.se/~torger/brutefir.html |
| Category: | multimedia |
| Licenses: | |
| Submitter: | None |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 3 |
| First Submitted: | 2010-04-21 13:11 |
| Last Updated: | 2010-04-21 13:11 |
Required by (0)
Sources
Latest Comments
Comment by ackcheng
Anonymous comment
It's my first submission, I hope I've done it right. Should you have any problem with it, please do not hesitate to let me know so I can fix it.