pkgsrc/audio/milkytracker/Makefile
nia 37b78033a3 milkytracker: Update to 1.03.00
12/12/2020 (v1.03):

  What’s new:

     * Improved FT2 accuracy
     * Alt-Backspace alternative for insert keybindings
     * Improved mousewheel / touchpad scrolling for Windows/OSX/SDL2
     * Option to invert mousewheel for pattern editor
     * New flanger effect
     * Allow quarter periods in sample generator
     * Click and drag to move selection in pattern editor
     * More intuitive cutting/pasting of partial FX commands
     * Allow selections by clicking outside the pattern bounds
     * Easier and more intuitive sample selection resizing

  Bugs fixed:

     * Various compatibility fixes
     * Jam channels stop working after applying settings
     * Improper WAV chunk parsing for odd sizes
     * Multiple heap & buffer overflow vulnerabilities
     * MacOS compatibility
     * Inverted samoples during signed to unsigned conversion
     * …and more, see git commit history for details
2020-12-10 13:37:05 +00:00

47 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.17 2020/12/10 13:37:05 nia Exp $
DISTNAME= milkytracker-1.03.00
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GITHUB:=milkytracker/}
GITHUB_PROJECT= MilkyTracker
GITHUB_TAG= v${PKGVERSION_NOREV}
MAINTAINER= nia@NetBSD.org
HOMEPAGE= https://milkytracker.titandemo.org/
COMMENT= Music tracker inspired by Fast Tracker 2
LICENSE= gnu-gpl-v3
USE_CMAKE= yes
USE_TOOLS+= pkg-config
USE_LANGUAGES= c c++03
# Resolve inconsistent PLIST on diferent platforms.
# As in docs/CMakeLists.txt, on "BSD", "share/doc/milkytracker" is always used
# Otherwise, "share/doc/MilkyTracker" is used.
# This is silly.
CMAKE_ARGS+= -DCMAKE_INSTALL_DOCDIR="share/doc/milkytracker"
INSTALLATION_DIRS+= share/appdata
INSTALLATION_DIRS+= share/applications
INSTALLATION_DIRS+= share/pixmaps
post-install:
${INSTALL_DATA} ${WRKSRC}/resources/pictures/carton.png \
${DESTDIR}${PREFIX}/share/pixmaps/milkytracker.png
${INSTALL_DATA} ${WRKSRC}/resources/milkytracker.appdata \
${DESTDIR}${PREFIX}/share/appdata/milkytracker.appdata.xml
${INSTALL_DATA} ${WRKSRC}/resources/milkytracker.desktop \
${DESTDIR}${PREFIX}/share/applications
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "Darwin"
.include "../../archivers/lhasa/buildlink3.mk"
.include "../../archivers/zziplib/buildlink3.mk"
.include "../../devel/SDL2/buildlink3.mk"
.endif
.if ${OPSYS} == "Linux"
.include "../../audio/alsa-lib/buildlink3.mk"
.include "../../audio/jack/buildlink3.mk"
.endif
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"