3c4b51c1a8
0.145 ------- Happy 15th Anniversary! Over its 15 years of existence since MAME 0.01 was released for MS-DOS with an initial library of 5 sets, MAME has grown exponentially to the point that no one thought we would be, boasting 18,650 different sets and operable on more OS platforms than thought possible. While video-based arcade games were the original targets for MAME, the scope of the project has grown to include documentation of virtually all coin-operated amusement devices including gambling (video/slots), coin droppers, pinball machines and more. Through the efforts of the literally thousands of developers, players and others who have provided assistance and feedback over the project's history, we would like to thank all of them that made this possible!
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.9 2012/03/08 17:11:09 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= mame0145s
|
|
PKGNAME= ${DISTNAME:S/0/-0./:S/s$//}
|
|
MASTER_SITES= http://mamedev.org/downloader.php?file=releases/
|
|
|
|
COMMENT= Multiple Arcade Machine Emulator
|
|
|
|
CONFLICTS= xmame-[0-9]* sdlmame-[0-9]*
|
|
|
|
DOCDIR= share/doc/mame
|
|
INSTALLATION_DIRS= bin ${DOCDIR} ${PKGMANDIR}/man1
|
|
|
|
# mame source is double-zipped
|
|
post-extract:
|
|
cd ${WRKDIR} && ${.CURDIR}/../../mk/extract/extract mame.zip
|
|
rm ${WRKDIR}/mame.zip
|
|
|
|
# not installed, because not found necessary so far:
|
|
# regrep, split, src2html, srcclean, testkeys
|
|
do-install:
|
|
set -e; \
|
|
for prg in chdman jedutil ldresample ldverify mame romcmp unidasm; \
|
|
do \
|
|
${INSTALL_PROGRAM} ${WRKSRC}/"$$prg" ${DESTDIR}${PREFIX}/bin; \
|
|
done
|
|
set -e; \
|
|
for doc in config.txt license.txt mame.txt; do \
|
|
${INSTALL_DATA} ${WRKSRC}/docs/"$$doc" ${DESTDIR}${PREFIX}/${DOCDIR}; \
|
|
done
|
|
# skipped: ldplayer man page exists, but no binary?
|
|
# skipped: testkeys, binary not installed
|
|
set -e; \
|
|
for man in chdman.1 jedutil.1 ldverify.1 mame.1 romcmp.1; \
|
|
do \
|
|
${INSTALL_DATA} ${WRKSRC}/src/osd/sdl/man/"$$man" ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \
|
|
done
|
|
|
|
.include "Makefile.common"
|