aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jhead.rb
diff options
context:
space:
mode:
authornibbles 2bits2012-03-19 19:53:14 -0700
committerAdam Vandenberg2012-03-20 07:08:48 -0700
commitbc8ab3b8ed138eb367d308918e2033f61f4240bc (patch)
treeb7b6d6c9a62b21383d625261ddb113efe3b7d018 /Library/Formula/jhead.rb
parentf18b16ec3e7b433379a5c9cdef8869afe9f7f454 (diff)
downloadhomebrew-bc8ab3b8ed138eb367d308918e2033f61f4240bc.tar.bz2
jhead 2.95
Upgrade jhead to version 2.95. Install jhead.1 and usage.html. Remove `chmod +x jhead`. It brews as a 555. Closes #11076. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/jhead.rb')
-rw-r--r--Library/Formula/jhead.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/jhead.rb b/Library/Formula/jhead.rb
index 62a2c8c80..508904aa5 100644
--- a/Library/Formula/jhead.rb
+++ b/Library/Formula/jhead.rb
@@ -1,13 +1,14 @@
require 'formula'
class Jhead < Formula
- url 'http://www.sentex.net/~mwandel/jhead/jhead-2.90.tar.gz'
homepage 'http://www.sentex.net/~mwandel/jhead/'
- md5 '661effa9420bb92cb99ced697c5a177f'
+ url 'http://www.sentex.net/~mwandel/jhead/jhead-2.95.tar.gz'
+ sha1 'e66b0a64e034054185da3e6c5e1ac7afb36776f8'
def install
system "make"
- system "chmod +x jhead"
bin.install "jhead"
+ man1.install 'jhead.1'
+ doc.install 'usage.html'
end
end