diff options
| author | Maxim Filatov | 2010-03-14 23:57:13 +0300 |
|---|---|---|
| committer | Adam Vandenberg | 2010-03-15 10:02:52 -0700 |
| commit | da50f2f153ac2a17136ab141b446115e036d8dc7 (patch) | |
| tree | 75fa87a0a171eac07a0709ef24a83babdc3ba257 | |
| parent | 967ad5604e747c35aae600d88663ad82ca357fbc (diff) | |
| download | homebrew-da50f2f153ac2a17136ab141b446115e036d8dc7.tar.bz2 | |
ldapvi 1.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/ldapvi.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/ldapvi.rb b/Library/Formula/ldapvi.rb new file mode 100644 index 000000000..aa72e7a87 --- /dev/null +++ b/Library/Formula/ldapvi.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Ldapvi <Formula + url 'http://www.lichteblau.com/download/ldapvi-1.7.tar.gz' + homepage 'http://www.lichteblau.com/ldapvi/' + md5 '6dc2f5441ac5f1e2b5b036e3521012cc' + + depends_on 'gettext' + depends_on 'glib' + depends_on 'popt' + depends_on 'readline' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
