0fb98d3fa1
"playumidi" is the "SIMPLE" MIDI file player for USB MIDI device on FreeBSD. This software is able to direct control for FreeBSD-umidi device(/dev/umidi*.*) in the "uaudio" driver. Therefore, You don't need to use the "/dev/sequencer" device or the other software when listening the MIDI-file music. And, Support for auto-judge MIDI-file XG/GS/GM mode & auto add the Tone-Generator ReSet code when the ReSet code isn't exist in a MIDI-file. WWW: https://ja.osdn.net/projects/playumidi/ PR: 239774 Submitted by: Koine Yuusuke <koinec@yahoo.co.jp>
31 lines
805 B
Makefile
31 lines
805 B
Makefile
# Created by: Koine Yuusuke(koinec) <koinec@yahoo.co.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= playumidi
|
|
PORTVERSION= 0.8.2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= OSDN/playumidi/71406
|
|
|
|
MAINTAINER= koinec@users.osdn.me
|
|
COMMENT= Standard MIDI format 0/1 player for FreeBSD USB-MIDI(umidi) device
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
PLIST_FILES= bin/playumidi man/man1/playumidi.1.gz
|
|
|
|
OPTIONS_DEFINE= LIBICONV DEBUG
|
|
OPTIONS_DEFAULT= LIBICONV
|
|
|
|
LIBICONV_DESC= Enable encoing conversion support with libiconv
|
|
|
|
DEBUG_MAKE_ARGS= -DWITH_DEBUG
|
|
|
|
LIBICONV_LIB_DEPENDS= libiconv.so:converters/libiconv
|
|
LIBICONV_MAKE_ARGS= -DWITH_ICONV
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/playumidi ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/playumidi.1.gz ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|