diff options
| author | Jean-Philippe Ouellet | 2014-07-28 20:09:10 -0400 |
|---|---|---|
| committer | Mike McQuaid | 2014-09-30 11:34:38 -0700 |
| commit | b6de5d6a8487dc3496f03df99162c762c4550a35 (patch) | |
| tree | dd1258a1ab8225a95ce89922ecf8cbdcc18daecf /Library | |
| parent | 4e2cd25cea2c1df621e6a9ac4fb22e03788e1864 (diff) | |
| download | homebrew-b6de5d6a8487dc3496f03df99162c762c4550a35.tar.bz2 | |
signify-osx 1.1 (new formula)
Closes #31196.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/signify-osx.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/signify-osx.rb b/Library/Formula/signify-osx.rb new file mode 100644 index 000000000..a712aeed1 --- /dev/null +++ b/Library/Formula/signify-osx.rb @@ -0,0 +1,18 @@ +require "formula" + +class SignifyOsx < Formula + homepage "http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man1/signify.1" + url "https://github.com/jpouellet/signify-osx/archive/1.1.tar.gz" + sha256 "e62649b908b2ae3b8940a452e95b034772cd2856603a196d4a50d78701ed6478" + head "https://github.com/jpouellet/signify-osx.git" + + def install + system "make" + system "make", "test" + system "make", "install", "PREFIX=#{prefix}" + end + + test do + system "#{bin}/signify", "-G", "-n", "-p", "pubkey", "-s", "seckey" + end +end |
