summaryrefslogtreecommitdiff
path: root/sysutils/fs-kit/Makefile
diff options
context:
space:
mode:
authoragc <agc>2005-10-01 18:27:37 +0000
committeragc <agc>2005-10-01 18:27:37 +0000
commit3902b1f9d1a5bdfc718b7a200e767c899b428494 (patch)
tree200d22323d392ba470010700c7baee9c3d1addeb /sysutils/fs-kit/Makefile
parent1ba1192d574140e224ed675527f8a98085e24a7b (diff)
downloadpkgsrc-3902b1f9d1a5bdfc718b7a200e767c899b428494.tar.gz
Initial import of fs-kit-0.4 into the Packages Collection.
Welcome to the File System Construction Kit! This is a software package that accompanies the book, Practical File System Design, which Dominic Giampaolo wrote and is published by Morgan Kaufmann (ISBN 1558604979). This package is a very simple framework in which you can experiment with a working (but simple) file system implementation. The framework is designed so that you can go in and modify one part of it, such as how the used and free disk blocks are managed, and not have to touch the rest of the file system. And because the package creates its file system inside of a normal file on your hard disk, you don't have to have a spare disk or require special (root) privileges to run the program. The goal is that this package should provide a convenient test bed for trying out new file system ideas without having to go through the pain and difficulty of creating a real kernel based file system. The API is generic enough however that after an you debug your implementation within this framework it could be moved to a real kernel based file system for the BeOS or a Unix like operating system. This package has a "no commercial use" licence.
Diffstat (limited to 'sysutils/fs-kit/Makefile')
-rw-r--r--sysutils/fs-kit/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/sysutils/fs-kit/Makefile b/sysutils/fs-kit/Makefile
new file mode 100644
index 00000000000..121f8e786c6
--- /dev/null
+++ b/sysutils/fs-kit/Makefile
@@ -0,0 +1,25 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/10/01 18:27:37 agc Exp $
+
+DISTNAME= fs-kit-0.4
+CATEGORIES= sysutils
+MASTER_SITES= http://www.nobius.org/~dbg/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= tech-pkg@NetBSD.org
+HOMEPAGE= http://www.nobius.org/~dbg/
+COMMENT= User-level filesystem testing kit
+
+LICENSE= fs-kit-license
+
+WRKSRC= ${WRKDIR}/fs-kit
+
+CFLAGS+= -Dunix=1
+MAKEFILE= makefile
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/fsh ${PREFIX}/sbin/fs-fsh
+ ${INSTALL_PROGRAM} ${WRKSRC}/makefs ${PREFIX}/sbin/fs-makefs
+ ${INSTALL_PROGRAM} ${WRKSRC}/tstfs ${PREFIX}/sbin/fs-tstfs
+ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/fs-kit
+
+.include "../../mk/bsd.pkg.mk"