root / datapacker.cabal

1
Name: datapacker
2
Version: 1.0.1
3
License: GPL
4
Maintainer: John Goerzen <jgoerzen@complete.org>
5
Author: John Goerzen
6
Stability: Stable
7
Copyright: Copyright (c) 2008 John Goerzen
8
license-file: COPYRIGHT
9
extra-source-files: COPYING, datapacker.sgml, Makefile, INSTALL
10
homepage: http://software.complete.org/datapacker
11
Build-type: Simple
12
Category: System
13
Synopsis: Tool to help pack files into the minimum number of CDs/DVDs/etc
14
Description: datapacker is a tool to group files by size. It is
15
 designed to group files such that they fill fixed-size containers
16
 (called "bins") using the minimum number of containers. This is
17
 useful, for instance, if you want to archive a number of files to CD
18
 or DVD, and want to organize them such that you use the minimum
19
 possible number of CDs or DVDs.
20
 .
21
 In many cases, datapacker executes almost instantaneously. Of
22
 particular note, the hardlink action can be used
23
 to effectively copy data into bins without having to actually copy
24
 the data at all.
25
 .
26
 datapacker is a tool in the traditional Unix style; it can be used in
27
 pipes and call other tools.
28
29
Build-Depends: unix, MissingH>=1.0.1, mtl, base, filepath, directory,
30
               hslogger, process
31
32
Executable: datapacker
33
Main-Is: datapacker.hs
34
Other-Modules: Actions, Scan, Types
35
   
36
GHC-Options: -O2 -Wall
37
     
38
-- Extensions: ExistentialQuantification, OverlappingInstances,
39
--    UndecidableInstances