homebrew-core/Formula/exempi.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

22 lines
744 B
Ruby

class Exempi < Formula
desc "Library to parse XMP metadata"
homepage "http://libopenraw.freedesktop.org/wiki/Exempi"
url "http://libopenraw.freedesktop.org/download/exempi-2.2.2.tar.bz2"
sha256 "0e7ad0e5e61b6828e38d31a8cc59c26c9adeed7edf4b26708c400beb6a686c07"
bottle do
cellar :any
sha1 "c8d68d4bba7682029828eae8140f2e4612411ff1" => :mavericks
sha1 "97517b6dcf56680855be22f0c0521b9ae498613f" => :mountain_lion
sha1 "9d047f2558f28bfa9e008e4f4ec11939b74ec99d" => :lion
end
depends_on "boost"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-boost=#{HOMEBREW_PREFIX}"
system "make", "install"
end
end