2009-10-26 22:13:36 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Fortune < Formula
|
2009-10-26 22:13:36 +00:00
|
|
|
url 'http://ftp.ibiblio.org/pub/linux/games/amusements/fortune/fortune-mod-9708.tar.gz'
|
|
|
|
homepage 'http://ftp.ibiblio.org/pub/linux/games/amusements/fortune/!INDEX.html'
|
|
|
|
md5 '81a87a44f9d94b0809dfc2b7b140a379'
|
|
|
|
|
|
|
|
def options
|
2010-04-07 05:58:35 +00:00
|
|
|
[['--no-offensive', "Don't install potentially offenive fortune files"]]
|
2009-10-26 22:13:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
|
|
|
|
2010-09-08 16:07:59 +00:00
|
|
|
inreplace 'Makefile' do |s|
|
|
|
|
s.change_make_var! 'FORTDIR', "/usr/local/bin" # indeed, correct
|
|
|
|
s.gsub! '/usr/local/man', '/usr/local/share/man'
|
|
|
|
s.gsub! '/usr/local', prefix
|
|
|
|
s.change_make_var! 'CC', ENV.cc
|
2010-01-13 11:06:52 +00:00
|
|
|
# OS X only supports POSIX regexes
|
2010-09-08 16:07:59 +00:00
|
|
|
s.change_make_var! 'REGEXDEFS', '-DHAVE_REGEX_H -DPOSIX_REGEX'
|
2010-01-13 11:06:52 +00:00
|
|
|
# Don't install offensive fortunes
|
2010-09-08 16:07:59 +00:00
|
|
|
s.change_make_var! 'OFFENSIVE', '0' if ARGV.include? '--no-offensive'
|
2010-01-13 11:06:52 +00:00
|
|
|
end
|
2009-10-26 22:13:36 +00:00
|
|
|
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|