7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
431 B
Ruby
16 lines
431 B
Ruby
require 'formula'
|
|
|
|
class Exif <Formula
|
|
url 'http://downloads.sourceforge.net/project/libexif/exif/0.6.19/exif-0.6.19.tar.bz2'
|
|
homepage 'http://libexif.sourceforge.net/'
|
|
md5 '75f0dd6f9f2d128261721c0896e0b324'
|
|
|
|
depends_on 'popt'
|
|
depends_on 'libexif'
|
|
depends_on 'gettext'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|