diff options
| author | Desert Crystal | 2012-04-08 06:32:01 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2012-04-12 07:12:51 -0700 |
| commit | 11e6add33b648014bf57f0da14abce4587ce040a (patch) | |
| tree | 83c816e540b794d5b9e57206ecdbcfb0f52678a3 | |
| parent | b99523999d22fd00a0739624f1eb7614fc6781ce (diff) | |
| download | homebrew-11e6add33b648014bf57f0da14abce4587ce040a.tar.bz2 | |
osslsigncode 1.4
Closes #11510.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/osslsigncode.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/osslsigncode.rb b/Library/Formula/osslsigncode.rb new file mode 100644 index 000000000..ca9e79e70 --- /dev/null +++ b/Library/Formula/osslsigncode.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Osslsigncode < Formula + homepage 'http://sourceforge.net/projects/osslsigncode/' + url 'http://downloads.sourceforge.net/project/osslsigncode/osslsigncode/osslsigncode-1.4.tar.gz' + md5 '018b12b3efc4a5250dd3977c2bada3cd' + + depends_on 'pkg-config' => :build + + def install + system "./configure", "--prefix=#{prefix}" + system "make install" + end +end |
