blob: 27bc07436e430d7e9c98179b657920ba6e57a561 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Joan Bruguera Micó <joanbrugueram@gmail.com>
pkgname=moc-fluidsynth-plugin
pkgver=0.0.6
pkgrel=1
pkgdesc="Plugin for playing MIDI files with FluidSynth using the MOC (Music on Console) player."
arch=(x86_64)
url="https://github.com/joanbm/$pkgname"
license=('GPL2')
depends=(moc fluidsynth libsmf)
install=install.sh
source=("https://github.com/joanbm/$pkgname/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=(5585d541c6bc92103a71a044d096f16d872ac260a078d7d91b005f60939aefb4)
build() {
cd "$pkgname-$pkgver"
make
}
package() {
cd "$pkgname-$pkgver"
mkdir -p "$pkgdir/usr/lib/moc/decoder_plugins"
make PLUGINS_DIR="$pkgdir/usr/lib/moc/decoder_plugins" install
}
|