Created
June 4, 2012 23:43
-
-
Save kasbah/2871524 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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