homebrew-core/Formula/scrypt.rb

13 lines
293 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Scrypt < Formula
homepage 'http://www.tarsnap.com/scrypt.html'
2013-01-29 03:32:17 +00:00
url 'http://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz'
sha1 '7b1b3feccfe2ff08b5d05752ef1ca7df2ec8646d'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end