839a7a72a1
Upgrade jhead to version 2.95. Install jhead.1 and usage.html. Remove `chmod +x jhead`. It brews as a 555. Closes Homebrew/homebrew#11076. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
328 B
Ruby
14 lines
328 B
Ruby
require 'formula'
|
|
|
|
class Jhead < Formula
|
|
homepage 'http://www.sentex.net/~mwandel/jhead/'
|
|
url 'http://www.sentex.net/~mwandel/jhead/jhead-2.95.tar.gz'
|
|
sha1 'e66b0a64e034054185da3e6c5e1ac7afb36776f8'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "jhead"
|
|
man1.install 'jhead.1'
|
|
doc.install 'usage.html'
|
|
end
|
|
end
|