aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rhash.rb
blob: c2933e8670bb91b01838650c118e9a10d985fe88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Rhash < Formula
  homepage 'http://rhash.anz.ru/'
  url 'http://downloads.sourceforge.net/project/rhash/rhash/1.2.10/rhash-1.2.10-src.tar.gz'
  sha1 '130f55faf3f13760ef0ab6a25e52db5052064c63'

  depends_on :macos => :lion

  def install
    system 'make', 'install', "PREFIX=",
                              "DESTDIR=#{prefix}",
                              "CC=#{ENV.cc}"
  end
end