aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jhead.rb
blob: 8a703475c6b00da81760a26bb0b7987d97b91866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Jhead < Formula
  homepage 'http://www.sentex.net/~mwandel/jhead/'
  url 'http://www.sentex.net/~mwandel/jhead/jhead-2.96.tar.gz'
  sha1 '668a515276654247e6fbe7a6193a5e1382a38116'

  def install
    system "make"
    bin.install "jhead"
    man1.install 'jhead.1'
    doc.install 'usage.html'
  end
end