homebrew-core/Formula/dcraw.rb

22 lines
683 B
Ruby

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