mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:57:17 +08:00
31 lines
668 B
Bash
31 lines
668 B
Bash
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
# Contributor: Panagiotis Papadopoulos
|
|
|
|
pkgname=wildmidi
|
|
pkgver=0.3.8
|
|
pkgrel=1
|
|
pkgdesc='Open Source MIDI Synthesizer'
|
|
arch=('x86_64')
|
|
url="http://www.mindwerks.net/projects/wildmidi/"
|
|
license=('LGPL3')
|
|
depends=('alsa-lib')
|
|
makedepends=('cmake')
|
|
source=(https://github.com/psi29a/wildmidi/archive/wildmidi-${pkgver}.tar.gz)
|
|
md5sums=('76fe5ae639d2c4288435d2e4ac577e77')
|
|
|
|
prepare() {
|
|
mkdir build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake -D CMAKE_INSTALL_PREFIX=/usr ../$pkgname-$pkgname-$pkgver
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|