blob: f9e5cd01ce66abaca6641a62eda2803684172b62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'
def install
system "make"
system "chmod +x jhead"
bin.install "jhead"
end
end
|