aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/remctl.rb
diff options
context:
space:
mode:
authorJack Nagel2012-08-28 10:30:00 -0500
committerJack Nagel2012-08-28 10:30:00 -0500
commit5b3b834ea5395dcf750330b1108005cc5e85fd9f (patch)
tree6d36651e5c43ff0cc29b3a411e3c6f6945efa80f /Library/Formula/remctl.rb
parente22ef892b6c50505ecdc1a72bc83e1cc64c5992b (diff)
downloadhomebrew-5b3b834ea5395dcf750330b1108005cc5e85fd9f.tar.bz2
remctl: add dep on PCRE
Fixes #14495. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/remctl.rb')
-rw-r--r--Library/Formula/remctl.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/remctl.rb b/Library/Formula/remctl.rb
index 219e5da65..3a1453c80 100644
--- a/Library/Formula/remctl.rb
+++ b/Library/Formula/remctl.rb
@@ -5,8 +5,12 @@ class Remctl < Formula
url 'http://archives.eyrie.org/software/kerberos/remctl-3.2.tar.gz'
sha1 'f49c287c29b6b289995b8907edc6ecba4c298c99'
+ depends_on 'pcre'
+
def install
- system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--with-pcre=#{HOMEBREW_PREFIX}"
system "make install"
end