a31eda9395
smake: * `env :std` in formulae is deprecated * http://s-make.sourceforge.net/ should be `https://s-make.sourceforge.io/`
27 lines
1.1 KiB
Ruby
27 lines
1.1 KiB
Ruby
class Smake < Formula
|
|
desc "Portable make program with automake features"
|
|
homepage "https://s-make.sourceforge.io/"
|
|
url "https://downloads.sourceforge.net/project/s-make/smake-1.2.5.tar.bz2"
|
|
sha256 "27566aa731a400c791cd95361cc755288b44ff659fa879933d4ea35d052259d4"
|
|
|
|
bottle do
|
|
sha256 "b1afe84c5a7b535738d2b2ee3f2abf879c908cf4f3b9c5a6f9f9cdd3fc403536" => :sierra
|
|
sha256 "a5cb6ea4fab2d0ce67342f482fd0efb4dcc20483722e56ae120880d2a97ebab0" => :el_capitan
|
|
sha256 "c1420a59ceba43481eac2b2046a7d3c4aac967a12ff52bccb3b4697eca8d5c8f" => :yosemite
|
|
sha256 "4e8157c27f8ab0d5ad2c9673a86357f38acfabea1ac4eef80c54e8141dfdb336" => :mavericks
|
|
sha256 "ce1edbcc0ec3f7db2208e39a09183d7dcfa21d50250393f5ad5c83204ab7b3ed" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
ENV.deparallelize # the bootstrap smake does not like -j
|
|
|
|
system "make", "GMAKE_NOWARN=true", "INS_BASE=#{libexec}", "INS_RBASE=#{libexec}", "install"
|
|
bin.install_symlink libexec/"bin/smake"
|
|
man1.install_symlink Dir["#{libexec}/share/man/man1/*.1"]
|
|
man5.install_symlink Dir["#{libexec}/share/man/man5/*.5"]
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/smake", "-version"
|
|
end
|
|
end
|