pkgsrc-wip/distella/Makefile
Thomas Klausner e35bd65048 Change default for zip extraction to leave files as they are.
Previously, zip extraction by default converted to lower case.

Fix some packages that need it and remove -L from some packages
that manually set it.
2009-08-25 11:56:44 +00:00

37 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.3 2009/08/25 11:56:45 thomasklausner Exp $
#
DISTNAME= distella
PKGNAME= distella-2.10
CATEGORIES= devel games cross emulators
MASTER_SITES= http://members.cox.net/rcolbert/zip/
EXTRACT_SUFX= .zip
MAINTAINER= xmor61@users.sourceforge.net
HOMEPAGE= http://members.cox.net/rcolbert/index.htm
COMMENT= 6502 Disassembler with Atari 2600 headers and cycle counting info
NO_CONFIGURE= YES
EXTRACT_OPTS_ZIP= -Laqo
post-extract:
${MKDIR} ${WRKSRC}
${MV} ${WRKDIR}/*.c ${WRKSRC}
${MV} ${WRKDIR}/*.txt ${WRKSRC}
do-build:
( cd ${WRKSRC} ; ${CC} -o distella distella.c )
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/distella
${INSTALL_DATA} ${WRKSRC}/distella.txt ${PREFIX}/share/doc/distella
${INSTALL_PROGRAM} ${WRKSRC}/distella ${PREFIX}/bin
@${ECHO} ""
@${ECHO} ";======================================================================================;"
@${ECHO} " BUG-NOTICE: Distella may core dump some machines if you do not specify any parameters."
@${ECHO} ""
@${ECHO} " Read '${PREFIX}/share/doc/distella/distella.txt' for detailed usage instructions..."
@${ECHO} ";======================================================================================;"
@${ECHO} ""
.include "../../mk/bsd.pkg.mk"