diff options
| author | Charlie Sharpsteen | 2011-06-29 08:32:50 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-07-21 16:26:30 -0700 | 
| commit | 62d52b03101d09483c48f869a5457b458c2c9fcc (patch) | |
| tree | 8c1ab7f53aeca7ad0f5b43abe5a6e1078127a3e5 | |
| parent | 24528aaeb311bb3f07b2393104636506cad6c9ed (diff) | |
| download | homebrew-62d52b03101d09483c48f869a5457b458c2c9fcc.tar.bz2 | |
epsilon 0.9.2
Epsilon is a command line tool for compressing and decompressing raster imagry
using wavelet algorithms. Epsilon is also a library that is used by the
RasterLite spatial database and tools that access RasterLite data, such as
GDAL.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/epsilon.rb | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/Library/Formula/epsilon.rb b/Library/Formula/epsilon.rb new file mode 100644 index 000000000..4fd999160 --- /dev/null +++ b/Library/Formula/epsilon.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Epsilon < Formula +  homepage 'http://epsilon-project.sourceforge.net' +  url 'http://sourceforge.net/projects/epsilon-project/files/epsilon/0.9.2/epsilon-0.9.2.tar.gz' +  md5 '56d7f1a41e05be20441728d9e20d22ef' + +  depends_on 'popt' + +  def install +    system "./configure", "--disable-debug", "--disable-dependency-tracking", +                          "--prefix=#{prefix}" +    system "make install" +  end +end | 
