mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
7a3822f4d5
This is a mod player which uses ncurses as a UI. It can play S3M, XM, MOD, MTM, STM, ULT, and UNI module types. It uses the Open Sound System, and has features like sample interpolation, random mod playing, and supports playing compressed modules. (Note: its playing of compressed modules is OK, providing they don't have spaces in their names...) PR: 4066 Submitted by: Daniel O'Connor <doconnor@ist.flinders.edu.au>
24 lines
553 B
Makefile
24 lines
553 B
Makefile
# New ports collection makefile for: mikmod
|
|
# Version required: 2.14
|
|
# Date created: 20 April 1997
|
|
# Whom: doconnor@ist.flinders.edu.au
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
DISTNAME= mikmod-2.14-unix
|
|
PKGNAME= mikmod-2.14
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.chiark.greenend.org.uk/~stevem/mikmod/
|
|
|
|
MAINTAINER= doconnor@ist.flinders.edu.au
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/source
|
|
MAN1= mikmod.1
|
|
|
|
do-install:
|
|
( cd ${WRKSRC} ; ${INSTALL_PROGRAM} mikmod mikcvt ${PREFIX}/bin )
|
|
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/docs/mikmod.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|