summaryrefslogtreecommitdiff
path: root/cross/atasm/Makefile
diff options
context:
space:
mode:
authorminskim <minskim>2004-02-13 23:00:36 +0000
committerminskim <minskim>2004-02-13 23:00:36 +0000
commitc1b1d586bf94858795ce572dd3556af084fcce2f (patch)
treefc268a3568026f539c610e0200b8d268b6c833cb /cross/atasm/Makefile
parent64098186938f27602ee2f934826b4b5fde82eb0d (diff)
downloadpkgsrc-c1b1d586bf94858795ce572dd3556af084fcce2f.tar.gz
Import atasm-1.04 from pkgsrc-wip. Packaged by mor at linex dot com
in PR pkg/22190, and modified by me. This is a 6502 cross-assembler optimized to code for the Atari 8 bit computer line. It is meant to be compatible with the Mac/65 assemlber on the native Atari 8 bit platform.
Diffstat (limited to 'cross/atasm/Makefile')
-rw-r--r--cross/atasm/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/cross/atasm/Makefile b/cross/atasm/Makefile
new file mode 100644
index 00000000000..efeb73567b7
--- /dev/null
+++ b/cross/atasm/Makefile
@@ -0,0 +1,32 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/02/13 23:00:36 minskim Exp $
+#
+
+DISTNAME= atasm104
+PKGNAME= atasm-1.04
+CATEGORIES= devel cross emulators
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=atasm/}
+EXTRACT_SUFX= .zip
+
+MAINTAINER= tech-pkg@NetBSD.org
+HOMEPAGE= http://sourceforge.net/projects/atasm/
+COMMENT= Cross-assembler for 6502 optimized to code for Atari 8 bit computers
+
+PKG_INSTALLATION_TYPES= overwrite pkgviews
+
+WRKSRC= ${WRKDIR}/${DISTNAME}/src
+NO_CONFIGURE= YES
+USE_BUILDLINK3= YES
+
+DOCDIR= ${PREFIX}/share/doc/atasm
+
+INSTALLATION_DIRS= bin man/man1
+
+do-install:
+ ${INSTALL_DATA_DIR} ${DOCDIR}
+ ${INSTALL_PROGRAM} ${WRKSRC}/atasm ${PREFIX}/bin/atasm
+ ${SED} -e 's,%%DOCDIR%%,${DOCDIR},g' < ${WRKSRC}/atasm.1.in > ${WRKSRC}/atasm.1
+ ${INSTALL_DATA} ${WRKSRC}/atasm.1 ${PREFIX}/man/man1
+ ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/atasm.txt ${DOCDIR}
+
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"