homebrew-core/Formula/fortune.rb

45 lines
1.6 KiB
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Fortune < Formula
desc "Infamous electronic fortune-cookie generator"
homepage "https://www.ibiblio.org/pub/linux/games/amusements/fortune/!INDEX.html"
url "https://www.ibiblio.org/pub/linux/games/amusements/fortune/fortune-mod-9708.tar.gz"
mirror "ftp://ftp.ibiblio.org/pub/linux/games/amusements/fortune/fortune-mod-9708.tar.gz"
sha256 "1a98a6fd42ef23c8aec9e4a368afb40b6b0ddfb67b5b383ad82a7b78d8e0602a"
2015-03-12 19:16:56 +00:00
bottle do
2015-12-26 22:49:04 +00:00
revision 2
sha256 "fe681ea371ce058faeebbd459ac9b5f492b7b523652da937ed8cb7d9bbf0eaf8" => :el_capitan
sha256 "97c35357e5becf525ddaede462e40283872d0b5d2cebfeeb7d509cb0ef06fc7c" => :yosemite
sha256 "61792a39fce2c81cf7a47a9230884d0bc19ff7c5f84bc7264f2bc0aa705f8eb1" => :mavericks
2015-03-12 19:16:56 +00:00
end
option "without-offensive", "Don't install potentially offensive fortune files"
deprecated_option "no-offensive" => "without-offensive"
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
2012-07-30 19:26:04 +00:00
# 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
2015-12-26 20:55:52 +00:00
s.change_make_var! "OFFENSIVE", "0" if build.without? "offensive"
2010-01-13 11:06:52 +00:00
end
system "make", "install"
end
test do
system "#{bin}/fortune"
end
end