diff options
| author | Alex Gaynor | 2014-02-27 19:00:56 -0800 | 
|---|---|---|
| committer | Jack Nagel | 2014-03-12 11:24:58 -0500 | 
| commit | 83925a9cb18aa2d7898c4abaffb88a281b532365 (patch) | |
| tree | 09d1f193f838b2e328f4273c886e5f1b1833e2d3 | |
| parent | 6150278e195c64da1f388364c619353e336e9385 (diff) | |
| download | homebrew-83925a9cb18aa2d7898c4abaffb88a281b532365.tar.bz2 | |
libscrypt 1.18
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/libscrypt.rb | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/Library/Formula/libscrypt.rb b/Library/Formula/libscrypt.rb new file mode 100644 index 000000000..e4a86f557 --- /dev/null +++ b/Library/Formula/libscrypt.rb @@ -0,0 +1,12 @@ +require "formula" + +class Libscrypt < Formula +  homepage "https://lolware.net/libscrypt.html" +  url "https://github.com/technion/libscrypt/archive/v1.18.tar.gz" +  sha1 "ff6b0cda00afcb582ca57699322b94166e5f3ab6" + +  def install +    system "make", "install-osx", "PREFIX=#{prefix}", "LDFLAGS=", "CFLAGS_EXTRA=" +    system "make", "check", "LDFLAGS=", "CFLAGS_EXTRA=" +  end +end | 
