homebrew-core/Formula/fortune.rb

31 lines
1.0 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Fortune < Formula
homepage 'http://ftp.ibiblio.org/pub/linux/games/amusements/fortune/!INDEX.html'
2012-07-30 19:26:04 +00:00
url 'http://ftp.ibiblio.org/pub/linux/games/amusements/fortune/fortune-mod-9708.tar.gz'
sha1 '9f96a00dbf5d2c6b0e7324af0eae988ce6adc5ad'
2012-07-30 19:26:04 +00:00
option 'no-offensive', "Don't install potentially offensive fortune files"
def install
ENV.deparallelize
inreplace 'Makefile' do |s|
2012-07-30 19:26:04 +00:00
# Use our selected compiler
s.change_make_var! 'CC', ENV.cc
# Change these first two folders to the correct location in /usr/local...
s.change_make_var! 'FORTDIR', "/usr/local/bin"
s.gsub! '/usr/local/man', '/usr/local/share/man'
2012-07-30 19:26:04 +00:00
# Now change all /usr/local at once to the prefix
s.gsub! '/usr/local', prefix
2012-07-30 19:26:04 +00:00
2010-01-13 11:06:52 +00:00
# OS X only supports POSIX regexes
s.change_make_var! 'REGEXDEFS', '-DHAVE_REGEX_H -DPOSIX_REGEX'
2010-01-13 11:06:52 +00:00
# Don't install offensive fortunes
2012-07-30 19:26:04 +00:00
s.change_make_var! 'OFFENSIVE', '0' if build.include? 'no-offensive'
2010-01-13 11:06:52 +00:00
end
system "make install"
end
end