blob: d45a7b372bfaf52c1e9f2d964886a232e58b5754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Unpaper < Formula
url 'http://download.berlios.de/unpaper/unpaper-0.3.tar.gz'
homepage 'http://unpaper.berlios.de/'
sha1 '120eee7c635eeb8ea75431c2dfba89bd8c132493'
def install
# Fix make.sh to take CFLAGS/LDFLAGS from environment
inreplace "make.sh" do |s|
s.change_make_var! "CFLAGS", ENV.cflags
s.change_make_var! "LDFLAGS", ENV.ldflags
end
system 'bash make.sh'
bin.install 'unpaper'
end
end
|