diff options
author | obache <obache@pkgsrc.org> | 2006-11-30 12:04:16 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2006-11-30 12:04:16 +0000 |
commit | 39ed3fa443f94569940dfff816a8165e92feca41 (patch) | |
tree | 233bba60110bfe0be973d1333ab3517dc7ce75f7 /sysutils/cpmtools/Makefile | |
parent | d20919c301532bbb6eaf8972cacaff7d3b1335c4 (diff) | |
download | pkgsrc-39ed3fa443f94569940dfff816a8165e92feca41.tar.gz |
Import cpmtools version 2.5.
Based on PR 27778 by David Griffith.
I update from 2.4 to 2.5, adapt to recent pkgsrc tree and pkglint clean.
This package allows to access CP/M file systems similar to the
well-known mtools package, which accesses MSDOS file systems. I use it
for file exchange with a Z80-PC simulator, but it works on floppy
devices as well. Currently it contains:
* cpmls - list sorted directory with output similar to ls, DIR, P2DOS
DIR and CP/M3 DIR[FULL]
* cpmcp - copy files from and to CP/M file systems
* cpmrm - erase files from CP/M file systems
* cpmchmod - change file permissions
* cpmchattr - change file attributes
* mkfs.cpm - make a CP/M file system
* fsck.cpm - check and repair a CP/M file system (only simple errors
can be repaired so far). Some images of broken file systems
are provided for testing.
* fsed.cpm - view CP/M file system
* manual pages for everything including the CP/M file system format
Diffstat (limited to 'sysutils/cpmtools/Makefile')
-rw-r--r-- | sysutils/cpmtools/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sysutils/cpmtools/Makefile b/sysutils/cpmtools/Makefile new file mode 100644 index 00000000000..ad68eaa642d --- /dev/null +++ b/sysutils/cpmtools/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/11/30 12:04:16 obache Exp $ +# + +DISTNAME= cpmtools-2.5 +CATEGORIES= sysutils +MASTER_SITES= http://www.moria.de/~michael/cpmtools/ + +MAINTAINER= dgriffi@cs.csubak.edu +HOMEPAGE= http://www.moria.de/~michael/cpmtools/ +COMMENT= Similar to mtools, except for CP/M filesystems + +GNU_CONFIGURE= yes + +CONFIGURE_ARGS+= --datadir=${PREFIX}/share/cpmtools + +INSTALLATION_DIRS+= share/cpmtools + +.include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |