You are not logged in.
The "digital room correction" program "drc" ( http://drc-fir.sourceforge.net ) is a program to calculate FIR-filters for bruteFIR. With the right filters, bruteFIR is able to correct phase shifts and unlinear frequency response of speakers (also in dependency of the listening room) in realtime with jackd.
Please consider packaging it
Last edited by capoeira (2010-08-18 16:51:57)
Offline
Here is a PKGBUILD:
# Maintainer: Steven Allen <(THIS FORUM IS) steven (NOT PROTECTED) @ (FROM SPAM) stebalien (BOTS) .com>
pkgname=drc
pkgver=3.1.0
pkgrel=1
pkgdesc="Generates digital room correction FIR filters"
arch=('i686' 'x86_64')
url="http://drc-fir.sourceforge.net/"
license=('GPL')
depends=('gcc-libs')
source=("http://downloads.sourceforge.net/drc-fir/drc-${pkgver}.tar.gz")
md5sums=('4e089c57214949e3933a0fc1062b9374')
build() {
cd "$srcdir/$pkgname-$pkgver/source"
make INSTALL_PREFIX="/usr" CFLAGS="$CFLAGS -O -ffast-math -mfancy-math-387 -msse -mfpmath=sse -I."
}
package() {
cd "$srcdir/$pkgname-$pkgver/source"
install -d "$pkgdir/usr/bin"
make INSTALL_PREFIX="$pkgdir/usr" DESTDIR="$pkgdir" TARGET_TARGETS=target/**/* CONFIG_TARGETS=config/**/* install
}Feel free to upload it to AUR if you want.
Last edited by Stebalien (2010-08-18 05:58:31)
Offline
Here is a PKGBUILD:
Feel free to upload it to AUR if you want.
thanks, I dont know how to upload, but i wil take a look in the wiki
Offline
To upload to AUR: http://wiki.archlinux.org/index.php/AUR … ges_to_AUR.
You should probably add [Solved] to the title.
Offline
added "installing with double precision"-option to the PKGBUILD and uploaded:
http://aur.archlinux.org/packages.php?ID=40015
Offline