aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Lynch2010-12-19 16:40:40 -0800
committerMike McQuaid2010-12-27 19:24:13 +0000
commitdab74b58a32b4616f41cba590879d03312c6f0e4 (patch)
treea8725905a0a9606c6f5aa6efc4fc92773b4d4ed7
parent669fd0882c8500a471c7d64b9ee44227a70f5aff (diff)
downloadhomebrew-dab74b58a32b4616f41cba590879d03312c6f0e4.tar.bz2
scantailor 0.9.9.2
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
-rw-r--r--Library/Formula/scantailor.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/scantailor.rb b/Library/Formula/scantailor.rb
new file mode 100644
index 000000000..b74bf7235
--- /dev/null
+++ b/Library/Formula/scantailor.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Scantailor <Formula
+ url 'http://downloads.sourceforge.net/project/scantailor/scantailor/0.9.9.2/scantailor-0.9.9.2.tar.gz'
+ homepage 'http://scantailor.sourceforge.net/'
+ md5 '0944b12c936019fe12269c7a356d60d0'
+
+ depends_on 'cmake'
+ depends_on 'qt'
+ depends_on 'jpeg'
+ depends_on 'boost'
+
+ def install
+ system "cmake . #{std_cmake_parameters}"
+ system "make install"
+ end
+end