homebrew-core/Formula/bsdmake.rb

79 lines
2.6 KiB
Ruby
Raw Normal View History

class Bsdmake < Formula
desc "BSD make (build tool)"
homepage "https://opensource.apple.com/"
url "https://opensource.apple.com/tarballs/bsdmake/bsdmake-24.tar.gz"
sha256 "82a948b80c2abfc61c4aa5c1da775986418a8e8eb3dd896288cfadf2e19c4985"
2014-06-09 12:47:29 +00:00
bottle do
2014-10-22 01:39:08 +00:00
revision 1
2015-09-23 13:36:21 +00:00
sha256 "b4052277ac6cf79ed579107fb73da96954c350d7bf29a124c55d87a0df8940b0" => :el_capitan
2014-10-22 01:39:08 +00:00
sha1 "af9a7d65b92a9c5fae42bd3653d4b79c249e8c18" => :yosemite
sha1 "e7530cee7765619355ad4ff07ff3a9635c5f843c" => :mavericks
sha1 "cbb0f8c89812af75e3f4ba99951d8b440db5660e" => :mountain_lion
2014-06-09 12:47:29 +00:00
end
keg_only :provided_until_xcode43
2014-03-14 14:43:37 +00:00
# MacPorts patches to make bsdmake play nice with our prefix system
# Also a MacPorts patch to circumvent setrlimit error
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/patches/1fcaddfc/bsdmake/patch-Makefile.diff"
sha256 "1e247cb7d8769d50e675e3f66b6f19a1bc7663a7c0800fc29a2489f3f6397242"
2014-03-14 14:43:37 +00:00
end
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/patches/1fcaddfc/bsdmake/patch-mk.diff"
sha256 "b7146bfe7a28fc422e740e28e56e5bf0166a29ddf47a54632ad106bca2d72559"
2014-03-14 14:43:37 +00:00
end
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/patches/1fcaddfc/bsdmake/patch-pathnames.diff"
sha256 "b24d73e5fe48ac2ecdfbe381e9173f97523eed5b82a78c69dcdf6ce936706ec6"
2014-03-14 14:43:37 +00:00
end
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/patches/1fcaddfc/bsdmake/patch-setrlimit.diff"
sha256 "cab53527564d775d9bd9a6e4969f116fdd85bcf0ad3f3e57ec2dcc648f7ed448"
end
def install
# Replace @PREFIX@ inserted by MacPorts patches
2014-05-19 02:28:38 +00:00
# Use "prefix" since this is sometimes a keg-only brew
# But first replace the X11 path if X11 is installed
2014-05-19 02:28:38 +00:00
inreplace "mk/sys.mk", "@PREFIX@", MacOS::X11.prefix || prefix
inreplace %W[mk/bsd.README
mk/bsd.cpu.mk
mk/bsd.doc.mk
mk/bsd.obj.mk
mk/bsd.own.mk
mk/bsd.port.mk
mk/bsd.port.subdir.mk
pathnames.h],
2014-05-19 02:28:38 +00:00
"@PREFIX@", prefix
2014-05-19 02:28:38 +00:00
inreplace "mk/bsd.own.mk" do |s|
s.gsub! "@INSTALL_USER@", `id -un`.chomp
s.gsub! "@INSTALL_GROUP@", `id -gn`.chomp
end
# See GNUMakefile
2014-05-19 02:28:38 +00:00
ENV.append "CFLAGS", "-D__FBSDID=__RCSID"
ENV.append "CFLAGS", "-mdynamic-no-pic"
system "make", "-f", "Makefile.dist"
2014-05-19 02:28:38 +00:00
bin.install "pmake" => "bsdmake"
man1.install "make.1" => "bsdmake.1"
(share/"mk/bsdmake").install Dir["mk/*"]
end
test do
(testpath/"Makefile").write <<-EOS.undent
foo:
\ttouch $@
EOS
system "#{bin}/bsdmake"
assert File.exist? "#{testpath}/foo"
end
end