aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/smake.rb
blob: b2e4b3751a41d4dd7c8245bc9ab11590cd216d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'formula'

class Smake < Formula
  url 'ftp://ftp.berlios.de/pub/smake/alpha/smake-1.2a49.tar.bz2'
  homepage 'http://cdrecord.berlios.de/private/smake.html'
  sha1 '7b50e1f81758fd6a732ddc7a78838bd2c96d1090'

  def install
    system "make", "GMAKE_NOWARN=true", "INS_BASE=#{prefix}", "INS_RBASE=#{prefix}", "MANDIR=share/man", "install"
  end
end