aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLuke Ledet2011-07-14 17:16:19 -0500
committerAdam Vandenberg2012-04-29 08:33:28 -0700
commita4d5a5c9f4add581ea3e73460942837f4760a267 (patch)
tree21329ed3849a4a60a7d0b565220b14a92a4735a0 /Library/Formula
parent1283b69e3694f72471102f1ace268683ff0d07b4 (diff)
downloadhomebrew-a4d5a5c9f4add581ea3e73460942837f4760a267.tar.bz2
Camellia 2.7.0
Camellia is an image processing and computer vision library Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/camellia.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/camellia.rb b/Library/Formula/camellia.rb
new file mode 100644
index 000000000..5b3eebd70
--- /dev/null
+++ b/Library/Formula/camellia.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Camellia < Formula
+ homepage 'http://camellia.sourceforge.net/'
+ url 'http://downloads.sourceforge.net/project/camellia/Unix_Linux%20Distribution/v2.7.0/CamelliaLib-2.7.0.tar.gz'
+ md5 '9dcfccb1d88193a963d18403f0e8474f'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end