Skip to content

Instantly share code, notes, and snippets.

@kasbah
Created June 4, 2012 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasbah/2871524 to your computer and use it in GitHub Desktop.
Save kasbah/2871524 to your computer and use it in GitHub Desktop.
# Maintainer: speps <speps at aur dot archlinux dot org>
pkgname=din
pkgver=3.5
pkgrel=2
pkgdesc="A software musical instrument and audio synthesizer using Bezier curves to draw waveforms."
arch=(i686 x86_64)
url="http://dinisnoise.org/"
license=('GPL3')
depends=('fftw' 'jack' 'liblo' 'libgl' 'libircclient' 'tcl')
makedepends=('mesa')
install="$pkgname.install"
source=("http://din.googlecode.com/files/$pkgname-$pkgver.tar.gz")
md5sums=('6419c4518e609fa80499f27368568080')
build() {
cd "$srcdir/$pkgname-$pkgver"
rm -f data/checkdotdin #shouldn't have been in src tarball
./configure --datarootdir=/usr/share --prefix=/usr --localstatedir=/usr/share
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment