mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
659 B
Bash
25 lines
659 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
# Contributor: yosh64 <yosh64.at.gmail.dot.com>
|
||
|
|
||
|
pkgname=amidi-plug
|
||
|
pkgver=0.7
|
||
|
pkgrel=4
|
||
|
pkgdesc="A MIDI input plugin for XMMS"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.develia.org/projects.php?l=2&f=1&p=amidiplug"
|
||
|
license=('GPL2')
|
||
|
depends=('xmms' 'fluidsynth')
|
||
|
makedepends=('pkgconfig')
|
||
|
options=('!libtool')
|
||
|
source=(http://www.develia.org/files/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('bb128c40dce0ab4afda79da01f985a09')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --with-player=xmms
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|
||
|
|