summaryrefslogtreecommitdiff
path: root/misc/granulate/Makefile
diff options
context:
space:
mode:
authorzuntum <zuntum@pkgsrc.org>2001-03-12 11:09:08 +0000
committerzuntum <zuntum@pkgsrc.org>2001-03-12 11:09:08 +0000
commitd64e5c0b7ca289bcf273a653e1b937e2b2966329 (patch)
treef40b1ee578dc8f47efca8d4e5a221b7c6c91d432 /misc/granulate/Makefile
parenta9cc64cc74800bc01a0c23c6382b75e2c5ed5d18 (diff)
downloadpkgsrc-d64e5c0b7ca289bcf273a653e1b937e2b2966329.tar.gz
Initial import of granulate.
Granulate is a program for splitting files in place. The program serves a purpose similar to the standard UNIX split, but differs in one important way. For split to operate on a 40MB file, you must have more than 40MB of free space on the disk. On the other hand, granulate only needs one chunk of free space on the hard drive, where a chunk is the requested size for the output files.
Diffstat (limited to 'misc/granulate/Makefile')
-rw-r--r--misc/granulate/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/misc/granulate/Makefile b/misc/granulate/Makefile
new file mode 100644
index 00000000000..c8740e53099
--- /dev/null
+++ b/misc/granulate/Makefile
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/03/12 11:09:08 zuntum Exp $
+#
+
+DISTNAME= granulate-0.1
+CATEGORIES= misc
+MASTER_SITES= ftp://134.74.16.12/pub/ \
+ http://zuntum.eik.pl/distfiles/
+
+MAINTAINER= zuntum@netbsd.org
+COMMENT= Program for splitting files in place
+
+MAKE_ENV= "CC=${CC}" \
+ "CFLAGS=${CFLAGS}"
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/granulate ${PREFIX}/bin
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/granulate
+ ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/granulate
+
+.include "../../mk/bsd.pkg.mk"