homebrew-core/Formula/scrypt.rb

13 lines
293 B
Ruby

require 'formula'
class Scrypt < Formula
homepage 'http://www.tarsnap.com/scrypt.html'
url 'http://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz'
sha1 '7b1b3feccfe2ff08b5d05752ef1ca7df2ec8646d'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end