Exif formula
Reads and writes EXIF metainformation from and to image files
This commit is contained in:
parent
a29861f7f6
commit
453ee0394e
1 changed files with 16 additions and 0 deletions
16
Formula/exif.rb
Normal file
16
Formula/exif.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
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
|
Loading…
Reference in a new issue