blob: 54a36b9036a0b063c74a2cd8594148edf5dce1bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Dcraw <Formula
# Note that the file is versioned, but not in source control,
# so updates are random and break the MD5. If you try to install
# and get an MD5 mismatch, check for a newer version number on
# http://www.cybercom.net/~dcoffin/dcraw/RCS/dcraw.c,v
# and update the version and MD5 in a patch. Thanks.
homepage 'http://www.cybercom.net/~dcoffin/dcraw/'
url 'http://www.cybercom.net/~dcoffin/dcraw/dcraw.c'
version '1.432'
md5 '122ae8772398a764012e09d15fb9eabc'
depends_on 'jpeg'
depends_on 'liblcms'
def install
system "#{ENV.cc} -o dcraw #{ENV['CFLAGS']} dcraw.c -lm -ljpeg -llcms"
bin.install 'dcraw'
end
end
|