mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
5708ae4005
Big thank you to Florian Walpen <dev@submerge.ch> and Goran Mekić <meka@tilda.center> for working on Jack2. PR: 251125 Submitted by: Florian Walpen <dev@submerge.ch> (original version)
41 lines
886 B
Makefile
41 lines
886 B
Makefile
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
|
|
PORTNAME= milkytracker
|
|
PORTVERSION= 1.03.00
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= audio
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Music creation tool inspired by Fast Tracker 2
|
|
|
|
LICENSE= GPLv3+ BSD3CLAUSE
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= liblhasa.so:archivers/lhasa \
|
|
libzzip.so:devel/zziplib \
|
|
libjack.so:audio/jack
|
|
|
|
USES= cmake compiler:c11 sdl
|
|
USE_GITHUB= yes
|
|
USE_SDL= sdl2
|
|
|
|
GH_PROJECT= MilkyTracker
|
|
|
|
ICONS= carton.ico carton.png
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
# ci pipeline creates transient tags
|
|
PORTSCOUT= ignore:1
|
|
|
|
post-install:
|
|
.for f in ${ICONS}
|
|
${INSTALL_DATA} ${WRKSRC}/resources/pictures/${f} \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/${f:C/carton/milkytracker/}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/resources/${PORTNAME}.desktop ${STAGEDIR}${DESKTOPDIR}
|
|
|
|
.include <bsd.port.mk>
|