blob: 8326bd8502b7d0269ea0912350391f9fbada3535 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require 'formula'
class Ssss < Formula
url 'http://point-at-infinity.org/ssss/ssss-0.5.tar.gz'
homepage 'http://point-at-infinity.org/ssss/'
md5 '24227252aa195a146d09de1df10357a1'
depends_on 'gmp'
depends_on 'xmltoman'
def install
inreplace 'Makefile' do |s|
# Compile with -DNOMLOCK to avoid warning on every run on OS X.
s.gsub! /\-W /, '-W -DNOMLOCK $(CFLAGS) $(LDFLAGS)'
s.change_make_var! "CC", ENV.cc
end
ENV.append 'CFLAGS', "-I#{HOMEBREW_PREFIX}/include"
system "make"
prefix.install %w{ HISTORY LICENSE THANKS }
man1.install %w{ ssss.1 }
bin.install %w{ ssss-combine ssss-split }
end
end
|