homebrew-core/Formula/setweblocthumb.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

16 lines
495 B
Ruby

class Setweblocthumb < Formula
desc "Assigns custom icons to webloc files"
homepage "http://hasseg.org/setWeblocThumb"
url "https://github.com/ali-rantakari/setWeblocThumb/archive/v1.0.0.tar.gz"
sha256 "0258fdabbd24eed2ad3ff425b7832c4cd9bc706254861a6339f886efc28e35be"
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