e495b06b99
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>
15 lines
430 B
Ruby
15 lines
430 B
Ruby
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
|