2010-08-18 03:42:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ocrad < Formula
|
2010-08-18 03:42:37 +00:00
|
|
|
homepage 'http://www.gnu.org/software/ocrad/'
|
2014-03-24 12:25:29 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/ocrad/ocrad-0.23.tar.lz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/ocrad/ocrad-0.23.tar.lz'
|
|
|
|
sha1 '8f539613ce6eb816c691f37ef0977adfcdab5e92'
|
2010-08-18 03:42:37 +00:00
|
|
|
|
|
|
|
def install
|
2013-12-02 14:59:18 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2012-05-15 18:47:30 +00:00
|
|
|
system "make", "install", "CXXFLAGS=#{ENV.cxxflags}"
|
2010-08-18 03:42:37 +00:00
|
|
|
end
|
2013-12-02 14:59:18 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/ocrad", "-h"
|
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|