aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rhash.rb
blob: 6dc542b1a101dfa21c51b37686a2bf3cadf0d28c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'formula'

class LionOrNewer < Requirement
  fatal true

  satisfy MacOS.version >= :lion

  def message
    "rhash requires `wcsdup` which isn't in the SDK before Lion."
  end
end


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 LionOrNewer

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