aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Höppner2009-10-02 18:53:26 +0200
committerMax Howell2009-10-02 20:32:40 +0100
commit07905358a972d8ce2153f08ce342ac3a7d40f3d0 (patch)
treee8503fc33f04a115d39000e780ee406e073a832b /Library
parent4ed898582813e4c45a3789a230d947b9422167f6 (diff)
downloadhomebrew-07905358a972d8ce2153f08ce342ac3a7d40f3d0.tar.bz2
Jasper formula
The JasPer Project is an open-source initiative to provide a free software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard (i.e., ISO/IEC 15444-1).
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/jasper.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/jasper.rb b/Library/Formula/jasper.rb
new file mode 100644
index 000000000..78c7b6a7a
--- /dev/null
+++ b/Library/Formula/jasper.rb
@@ -0,0 +1,17 @@
+require 'brewkit'
+
+class Jasper <Formula
+ url 'http://www.ece.uvic.ca/~mdadams/jasper/software/jasper-1.900.1.zip'
+ homepage 'http://www.ece.uvic.ca/~mdadams/jasper/'
+ md5 'a342b2b4495b3e1394e161eb5d85d754'
+
+ depends_on 'jpeg'
+
+ def install
+ system "./configure", "--prefix=#{prefix}",
+ "--disable-debug",
+ "--disable-dependency-trackinga",
+ "--enable-shared"
+ system "make install"
+ end
+end