aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-09-04 11:37:39 -0700
committerAdam Vandenberg2012-09-04 11:37:55 -0700
commit8170f64217df1eefabc699a33c32e6ab8a090514 (patch)
tree21af55e2ac6138075e2183f71ce034789cae1744 /Library
parent05034d444b085a0ca2f4974c2a66978d3ee9f906 (diff)
downloadhomebrew-8170f64217df1eefabc699a33c32e6ab8a090514.tar.bz2
ldapvi: style nits
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ldapvi.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/ldapvi.rb b/Library/Formula/ldapvi.rb
index e4c0b367d..c24b465ee 100644
--- a/Library/Formula/ldapvi.rb
+++ b/Library/Formula/ldapvi.rb
@@ -1,8 +1,8 @@
require 'formula'
class Ldapvi < Formula
- url 'http://www.lichteblau.com/download/ldapvi-1.7.tar.gz'
homepage 'http://www.lichteblau.com/ldapvi/'
+ url 'http://www.lichteblau.com/download/ldapvi-1.7.tar.gz'
sha1 'd1cde4cbb618180f9ae0e77c56a1520b8ad61c9a'
depends_on 'gettext'
@@ -10,11 +10,6 @@ class Ldapvi < Formula
depends_on 'popt'
depends_on 'readline'
- def install
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
- system "make install"
- end
-
# Backporting the fix from the devel version
# (namespace conflict with Lion's getline function)
# http://www.lichteblau.com/git/?p=ldapvi.git;a=commit;h=256ced029c235687bfafdffd07be7d47bf7af39b
@@ -23,6 +18,11 @@ class Ldapvi < Formula
DATA
end
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
end
__END__