f40cd77686
Set them to Orphaned for now. If you'd like to pick up a package, feel free.
30 lines
808 B
Bash
30 lines
808 B
Bash
# Template file for 'osmid'
|
|
pkgname=osmid
|
|
version=0.8.0
|
|
revision=1
|
|
build_style=cmake
|
|
hostmakedepends="pkg-config"
|
|
makedepends="alsa-lib-devel libX11-devel"
|
|
short_desc="Tool to convert MIDI to OSC and OSC to MIDI"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT, ISC, GPL-3.0-or-later"
|
|
homepage="https://github.com/llloret/osmid/"
|
|
distfiles="https://github.com/llloret/osmid/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=774d6c2c7ba81d1ab9d4e7ee031ce15a1506f19ee940166d277dbdee98f87b50
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) makedepends+=" libexecinfo-devel" ;;
|
|
esac
|
|
|
|
pre_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) vsed -i CMakeLists.txt \
|
|
-e "/target_link_libraries/s/X11)/X11 execinfo)/"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.md
|
|
vdoc README.md
|
|
}
|