homebrew-core/Formula/smake.rb

15 lines
420 B
Ruby
Raw Normal View History

require 'formula'
class Smake < Formula
homepage 'http://cdrecord.berlios.de/private/smake.html'
2013-01-04 21:39:51 +00:00
url 'ftp://ftp.berlios.de/pub/smake/smake-1.2.2.tar.bz2'
2013-01-04 04:45:37 +00:00
sha1 'abd5a99a6fe588afa31246f3d686c686c75bb953'
# smake silently fails to build its binaries in superenv
env :std
def install
system "make", "GMAKE_NOWARN=true", "INS_BASE=#{prefix}", "INS_RBASE=#{prefix}", "MANDIR=share/man", "install"
end
end