aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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__