aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libglade.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-28 21:25:11 -0800
committerAdam Vandenberg2013-01-28 21:40:36 -0800
commitecd610f905afb156fd622fb10929c8e07964fbee (patch)
tree60b593a45d799bb13509d5636a8107e13e64bbc4 /Library/Formula/libglade.rb
parent20ee20622f29646a54152bfec9fe7cca2a0792b2 (diff)
downloadhomebrew-ecd610f905afb156fd622fb10929c8e07964fbee.tar.bz2
libglade: style nits
Diffstat (limited to 'Library/Formula/libglade.rb')
-rw-r--r--Library/Formula/libglade.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/libglade.rb b/Library/Formula/libglade.rb
index 3fad62670..c1ff083e1 100644
--- a/Library/Formula/libglade.rb
+++ b/Library/Formula/libglade.rb
@@ -1,8 +1,8 @@
require 'formula'
class Libglade < Formula
- url 'http://ftp.gnome.org/pub/GNOME/sources/libglade/2.6/libglade-2.6.4.tar.gz'
homepage 'http://glade.gnome.org'
+ url 'http://ftp.gnome.org/pub/GNOME/sources/libglade/2.6/libglade-2.6.4.tar.gz'
sha256 'c41d189b68457976069073e48d6c14c183075d8b1d8077cb6dfb8b7c5097add3'
depends_on 'libxml2'
@@ -11,7 +11,8 @@ class Libglade < Formula
def install
ENV.append 'LDFLAGS', '-lgmodule-2.0'
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end