pkgsrc/audio/fasttracker2/Makefile
fox 63f6e4faa4 audio/fasttracker2: Updates to v1.46
Changes since v1.44

v1.46 - 02.04.2021
- Fixed: Audio settings weren't correctly loaded from config in v1.45

v1.45 - 01.04.2021
- Fixed possible crash when starting the program on M1 Macs (thanks kode54)
- Fixed possible mouse cursor corruption when hovering over text boxes on
  Linux.
- Fixed possibly buggy string operations
- Refactored some code that was doing unnecessary/wrong stuff
- Minor code cleanup
- Updated help text
2021-04-06 10:49:29 +00:00

58 lines
1.6 KiB
Makefile

# $NetBSD: Makefile,v 1.84 2021/04/06 10:49:29 fox Exp $
DISTNAME= fasttracker2-1.46
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GITHUB:=8bitbubsy/}
GITHUB_PROJECT= ft2-clone
GITHUB_TAG= v${PKGVERSION_NOREV}
EXTRACT_USING= bsdtar
MAINTAINER= fox@NetBSD.org
HOMEPAGE= https://16-bits.org/
COMMENT= Portable Fasttracker II clone in C using SDL 2
LICENSE= modified-bsd AND cc-by-nc-sa-v4.0-license
USE_LANGUAGES= c99 c++
USE_CMAKE= yes
LDFLAGS+= ${BUILDLINK_LDADD.iconv}
TOOL_DEPENDS+= icoutils-[0-9]*:../../graphics/icoutils
ICON_SIZES= 16 24 32 48 64 128 256
INSTALLATION_DIRS+= bin
INSTALLATION_DIRS+= share/applications
INSTALLATION_DIRS+= share/appdata
.for s in ${ICON_SIZES}
INSTALLATION_DIRS+= share/icons/hicolor/${s}x${s}/apps
.endfor
pre-configure:
.for s in ${ICON_SIZES}
cd ${WRKSRC} && ${PREFIX}/bin/icotool -w ${s} -h ${s} -x -o ${s}.png \
src/gfxdata/icon/ft2-clone.ico
.endfor
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/release/other/ft2-clone \
${DESTDIR}${PREFIX}/bin/${PKGBASE}
${INSTALL_DATA} ${FILESDIR}/fasttracker2.desktop \
${DESTDIR}${PREFIX}/share/applications
${INSTALL_DATA} ${FILESDIR}/fasttracker2.appdata.xml \
${DESTDIR}${PREFIX}/share/appdata
.for s in ${ICON_SIZES}
${INSTALL_DATA} ${WRKSRC}/${s}.png \
${DESTDIR}${PREFIX}/share/icons/hicolor/${s}x${s}/apps/fasttracker2.png
.endfor
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "Linux"
BUILDLINK_TRANSFORM+= rm:-lasound
.else
. include "../../audio/alsa-lib/buildlink3.mk"
.endif
.include "../../converters/libiconv/buildlink3.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../devel/SDL2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"