58 lines
2 KiB
Ruby
58 lines
2 KiB
Ruby
class Dbxml < Formula
|
|
desc "Embeddable XML database with XQuery support and other advanced features"
|
|
homepage "https://www.oracle.com/us/products/database/berkeley-db/xml/overview/index.html"
|
|
url "http://download.oracle.com/berkeley-db/dbxml-6.0.18.tar.gz"
|
|
sha256 "5851f60a47920718b701752528a449f30b16ddbf5402a2a5e8cde8b4aecfabc8"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "48b8f8c88a9321d4e3293e03c06c16a08ee83a0c0c4b237cf8aedcfd7bf59ea0" => :sierra
|
|
sha256 "fb36c58d1ccfcbd8a64aff8f6296ada9379ade8413382b70275b6209216aed64" => :el_capitan
|
|
sha256 "2c1f4a931b7ffdf2a3a5d0a0aaf1be9434b4483549d47eda7868ee2fa4456837" => :yosemite
|
|
sha256 "c6975e34ad3640650a9da0f08e99f9f763ec47bc3532c28466233e10eaeccaa1" => :mavericks
|
|
end
|
|
|
|
depends_on "xerces-c"
|
|
depends_on "xqilla"
|
|
depends_on "berkeley-db"
|
|
|
|
def install
|
|
inreplace "dbxml/configure" do |s|
|
|
s.gsub! "lib/libdb-*.la | sed 's\/.*db-\\\(.*\\\).la", "lib/libdb-*.a | sed 's/.*db-\\(.*\\).a"
|
|
s.gsub! "lib/libdb-*.la", "lib/libdb-*.a"
|
|
end
|
|
|
|
cd "dbxml" do
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-xqilla=#{HOMEBREW_PREFIX}",
|
|
"--with-xerces=#{HOMEBREW_PREFIX}",
|
|
"--with-berkeleydb=#{HOMEBREW_PREFIX}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"simple.xml").write <<-EOS.undent
|
|
<breakfast_menu>
|
|
<food>
|
|
<name>Belgian Waffles</name>
|
|
<calories>650</calories>
|
|
</food>
|
|
<food>
|
|
<name>Homestyle Breakfast</name>
|
|
<calories>950</calories>
|
|
</food>
|
|
</breakfast_menu>
|
|
EOS
|
|
|
|
(testpath/"dbxml.script").write <<-EOS.undent
|
|
createContainer ""
|
|
putDocument simple "simple.xml" f
|
|
cquery 'sum(//food/calories)'
|
|
print
|
|
quit
|
|
EOS
|
|
assert_equal "1600", shell_output("#{bin}/dbxml -s #{testpath}/dbxml.script").chomp
|
|
end
|
|
end
|