homebrew-core/Formula/exempi.rb
2018-02-05 09:14:35 +01:00

22 lines
826 B
Ruby

class Exempi < Formula
desc "Library to parse XMP metadata"
homepage "https://wiki.freedesktop.org/libopenraw/Exempi/"
url "https://libopenraw.freedesktop.org/download/exempi-2.4.4.tar.bz2"
sha256 "a2d59a9c5d449d88480dc9ffb3220f34b9789367dbe6fdc957ed2b9a78ec3db0"
bottle do
cellar :any
sha256 "38ea47dd4aa6ba60039ffc10c57b71dfeebd11f4ea4504c536f513e047f2caf6" => :high_sierra
sha256 "9d9150d0bc98637f83d3f41805094f34c937659f10dfef110ce9bdeb379f17dc" => :sierra
sha256 "4e9be935ecef717a08b180f753d4321388cb1979113d6a08024df0a54a29581e" => :el_capitan
end
depends_on "boost"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-boost=#{HOMEBREW_PREFIX}"
system "make", "install"
end
end