blob: c098680bdbf581eb36c77adc05ebb63e2f7b4863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Rhash < Formula
homepage 'http://rhash.anz.ru/'
url 'http://downloads.sourceforge.net/project/rhash/rhash/1.2.9/rhash-1.2.9-src.tar.gz'
sha1 '83c0e74a39a7824f430ef24c107e3474831d0acf'
def install
system 'make', 'install', "PREFIX=#{prefix}",
"DESTDIR=#{prefix}",
"CC=#{ENV.cc}"
end
end
|