35 lines
883 B
Bash
35 lines
883 B
Bash
# Template file for 'rtmidi'
|
|
pkgname=rtmidi
|
|
version=6.0.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-alsa --with-jack"
|
|
hostmakedepends="automake libtool"
|
|
makedepends="alsa-lib-devel jack-devel"
|
|
short_desc="C++ classes for realtime MIDI input/output"
|
|
maintainer="Duncaen <duncaen@voidlinux.org>"
|
|
license="custom:RtMidi"
|
|
homepage="http://www.music.mcgill.ca/~gary/rtmidi/"
|
|
distfiles="https://github.com/thestk/rtmidi/archive/${version}.tar.gz"
|
|
checksum=ef7bcda27fee6936b651c29ebe9544c74959d0b1583b716ce80a1c6fea7617f0
|
|
|
|
pre_configure() {
|
|
sed -n '/Copyright (c)/,$ p' < README.md > LICENSE
|
|
autoreconf -fi
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
rtmidi-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|