diff options
| author | Fabio Maione | 2010-06-05 10:05:29 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-06-05 08:01:41 -0700 | 
| commit | 4de1af1944dcf46f3bb3c3bd71d72e21111ab1c2 (patch) | |
| tree | 52a6ee4ddca179b34562ee7c2251944b47268fcd /Library/Formula/gaffitter.rb | |
| parent | 1f38004c75f6ec2be875f6f5b1b96da34db2c08b (diff) | |
| download | homebrew-4de1af1944dcf46f3bb3c3bd71d72e21111ab1c2.tar.bz2 | |
GAFFitter - Genetic Algorithm File Fitter
GAFFitter is a CLI tool that arranges a list of files/directories into volumes
of a certain capacity, such as CD or DVD, to make the total wastage minimized.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/gaffitter.rb')
| -rw-r--r-- | Library/Formula/gaffitter.rb | 12 | 
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/gaffitter.rb b/Library/Formula/gaffitter.rb new file mode 100644 index 000000000..6d242b872 --- /dev/null +++ b/Library/Formula/gaffitter.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Gaffitter <Formula +  url 'http://downloads.sourceforge.net/project/gaffitter/gaffitter/0.6.0/gaffitter-0.6.0.tar.bz2' +  homepage 'http://gaffitter.sourceforge.net/' +  md5 'a4a0fa0b3eeeaf49624d2e1b78de3cff' + +  def install +    system "make" +    bin.install "src/gaffitter" +  end +end  | 
