d32fa0915f
MilkyTracker is an open source, multi-platform music application for creating .MOD and .XM module files. It attempts to recreate the module replay and user experience of the popular DOS program Fasttracker II, with special playback modes available for improved Amiga ProTracker 2/3 compatibility. ok simon@
38 lines
885 B
Makefile
38 lines
885 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/05/11 07:09:03 jakemsr Exp $
|
|
|
|
COMMENT = Fasttracker II inspired MOD tracker
|
|
DISTNAME = milkytracker-0.90.80
|
|
|
|
CATEGORIES = audio
|
|
|
|
HOMEPAGE = http://www.milkytracker.net/
|
|
|
|
MAINTAINER = Jacob Meuser <jakemsr@openbsd.org>
|
|
|
|
# GPL v3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c m pthread stdc++
|
|
|
|
MASTER_SITES = ${HOMEPAGE}/files/
|
|
|
|
# libjack accessed via dlopen()
|
|
RUN_DEPENDS = ::audio/jack
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
LIB_DEPENDS = SDL::devel/sdl
|
|
|
|
USE_X11 = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/milkytracker
|
|
cd ${WRKSRC}/docs && ${INSTALL_DATA} FAQ.html MilkyTracker.html \
|
|
${PREFIX}/share/doc/milkytracker
|
|
|
|
.include <bsd.port.mk>
|