aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-09-23 01:48:59 -0500
committerJack Nagel2014-09-23 01:48:59 -0500
commitc0e26bc1b329be8051ebce274243b4260d2ba2e9 (patch)
tree4792ecfdb67a180e163dfea8842960adfaca5b6d /Library/Formula
parentcb9caa5eecf34170e3d59361d05f8e5b93e1acd3 (diff)
downloadhomebrew-c0e26bc1b329be8051ebce274243b4260d2ba2e9.tar.bz2
libxml++ 2.36.0
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libxml++.rb20
1 files changed, 8 insertions, 12 deletions
diff --git a/Library/Formula/libxml++.rb b/Library/Formula/libxml++.rb
index c993ea12d..fb188cd29 100644
--- a/Library/Formula/libxml++.rb
+++ b/Library/Formula/libxml++.rb
@@ -1,24 +1,20 @@
-require 'formula'
+require "formula"
class Libxmlxx < Formula
- url 'http://ftp.gnome.org/pub/GNOME/sources/libxml++/2.34/libxml++-2.34.2.tar.bz2'
- homepage 'http://libxmlplusplus.sourceforge.net'
- sha256 '38f20632a711d06166b03a2a92ce71b08130ac30e014805a7052ae3f4c0b15e8'
+ homepage "http://libxmlplusplus.sourceforge.net"
+ url "http://ftp.gnome.org/pub/GNOME/sources/libxml++/2.36/libxml++-2.36.0.tar.xz"
+ sha256 "bfdf327bf9ebd12946b7aa6a152045f209d5c9fecd06ebfcdf9b3e7c1af6e2e1"
bottle do
- sha1 "13bf9fa17e6fe7020e69663ce66624f077c8bcd0" => :mavericks
- sha1 "642dd5375d0171c68accd93030e72b4f617f376b" => :mountain_lion
- sha1 "ba6b90c9d92c0c649f5484f273ce098040f35b0a" => :lion
end
- depends_on 'pkg-config' => :build
- depends_on 'glibmm'
+ depends_on "pkg-config" => :build
+ depends_on "glibmm"
# LibXML++ can't compile agains the version of LibXML shipped with Leopard
- depends_on 'libxml2' if MacOS.version <= :leopard
+ depends_on "libxml2" if MacOS.version <= :leopard
def install
- system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end