4d941c28be
ARGV.flag? will notice short options, and so ARGV.flag? '--devel' will be triggered by '-d', which is obviously undesired. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
31 lines
863 B
Ruby
31 lines
863 B
Ruby
require 'formula'
|
|
|
|
class Scantailor < Formula
|
|
homepage 'http://scantailor.sourceforge.net/'
|
|
|
|
unless ARGV.include? '--enhanced'
|
|
url 'http://downloads.sourceforge.net/project/scantailor/scantailor/0.9.10/scantailor-0.9.10.tar.gz'
|
|
md5 'f962c93a2d63b449fa3f6612ade3b028'
|
|
else
|
|
url 'http://downloads.sourceforge.net/project/scantailor/scantailor-devel/enhanced/scantailor-enhanced-20110907.tar.gz'
|
|
md5 '8ba5c23c611e7bdd7cdb40f991f6fd35'
|
|
version 'enhanced-20110907'
|
|
end
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'qt'
|
|
depends_on 'boost'
|
|
depends_on 'jpeg'
|
|
depends_on 'libtiff'
|
|
|
|
def options
|
|
[
|
|
["--enhanced", "Build experimental \"enhanced\" branch, which includes extra features"]
|
|
]
|
|
end
|
|
|
|
def install
|
|
system "cmake . #{std_cmake_parameters} -DPNG_INCLUDE_DIR=/usr/X11/include"
|
|
system "make install"
|
|
end
|
|
end
|