diff options
| author | phySi0 | 2013-10-27 15:15:55 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2013-12-18 09:29:58 +0000 |
| commit | 349eda26130e4a80984574f8357c19ddf4a945ab (patch) | |
| tree | a52d3a0dc794141a0f80520686486c09d48b015f /Library/Formula | |
| parent | f3ff44d3a1338a15e4474eb1ce3cfc76f576d3ef (diff) | |
| download | homebrew-349eda26130e4a80984574f8357c19ddf4a945ab.tar.bz2 | |
setweblocthumb 1.0.0 (new formula)
Closes #25222.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/setweblocthumb.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/setweblocthumb.rb b/Library/Formula/setweblocthumb.rb new file mode 100644 index 000000000..4d5fd5fbb --- /dev/null +++ b/Library/Formula/setweblocthumb.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Setweblocthumb < Formula + homepage 'http://hasseg.org/setWeblocThumb' + url 'https://github.com/ali-rantakari/setWeblocThumb/archive/v1.0.0.tar.gz' + sha1 '60fb2858e6f45216166f31e951432805d7f9dcc0' + + def install + system "make" + bin.install "setWeblocThumb" + end + + test do + Pathname.new('google.webloc').write('{URL = "https://google.com";}') + system "#{bin}/setWeblocThumb", 'google.webloc' + end +end |
