homebrew-core/Formula/unpaper.rb

18 lines
463 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Unpaper < Formula
homepage 'http://unpaper.berlios.de/'
2013-01-27 23:42:30 +00:00
url 'http://download.berlios.de/unpaper/unpaper-0.3.tar.gz'
sha1 '120eee7c635eeb8ea75431c2dfba89bd8c132493'
def install
# Fix make.sh to take CFLAGS/LDFLAGS from environment
inreplace "make.sh" do |s|
2010-09-06 18:48:21 +00:00
s.change_make_var! "CFLAGS", ENV.cflags
s.change_make_var! "LDFLAGS", ENV.ldflags
end
system 'bash make.sh'
bin.install 'unpaper'
end
end