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>
This commit is contained in:
parent
b8b3cfd07c
commit
e495b06b99
1 changed files with 15 additions and 0 deletions
15
Formula/epsilon.rb
Normal file
15
Formula/epsilon.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue