Game_Music_Emu is a collection of video game music file emulators that support the following formats and systems: AY ZX Spectrum/Amstrad CPC GBS Nintendo Game Boy GYM Sega Genesis/Mega Drive HES NEC TurboGrafx-16/PC Engine KSS MSX Home Computer/other Z80 systems (doesn't support FM sound) NSF/NSFE Nintendo NES/Famicom (with VRC 6, Namco 106, and FME-7 sound) SAP Atari systems using POKEY sound chip SPC Super Nintendo/Super Famicom VGM/VGZ Sega Master System/Mark III, Sega Genesis/Mega Drive,BBC Micro
34 lines
914 B
Makefile
34 lines
914 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2011/08/01 02:27:48 pallegra Exp $
|
|
#
|
|
|
|
DISTNAME= game-music-emu-0.5.5
|
|
PKGNAME= ${DISTNAME:S/game-music-emu/libgme/}
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://game-music-emu.googlecode.com/files/
|
|
EXTRACT_SUFX= .tbz2
|
|
|
|
MAINTAINER= pallegra@gmail.com
|
|
HOMEPAGE= http://code.google.com/p/game-music-emu/
|
|
COMMENT= Video game music file emulation/playback library
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
INSTALLATION_DIRS+= lib/pkgconfig
|
|
BUILD_DIRS= gme
|
|
MAKE_ENV+= MKDIR="${MKDIR}"
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/Makefile ${WRKSRC}/gme/
|
|
${CP} ${FILESDIR}/gme_types.h ${WRKSRC}/gme/
|
|
${SED} -e "s,@PREFIX@,${PREFIX}," \
|
|
-e 's,@VERSION@,${PKGVERSION},g' \
|
|
${FILESDIR}/libgme.pc > ${WRKSRC}/libgme.pc
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/libgme.pc ${DESTDIR}${PREFIX}/lib/pkgconfig
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|