homebrew-core/Formula/smake.rb
fbrosson 6b3b89dd8d smake 1.2.4
smake 1.2.4 was released on 2014-05-19 and its homepage was moved to SF.net.

Closes Homebrew/homebrew#30521.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-06-28 19:03:37 -05:00

21 lines
761 B
Ruby

require 'formula'
class Smake < Formula
homepage 'http://s-make.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/s-make/smake-1.2.4.tar.bz2'
sha1 '677af2a1b768d5dfd3bd71dc46f81992e798191b'
# A sed operation silently fails on Lion or older, due
# to some locale settings in smake's build files. The sed
# wrapper on 10.8+ overrides them.
env :std if MacOS.version <= :lion
def install
ENV.delete 'MAKEFLAGS' # 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
end