blob: 62a2c8c80d51ebb2731a51f3afd1f92cc4cc8c1b (
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
|