diff options
| author | Jack Nagel | 2012-02-25 13:32:03 -0600 |
|---|---|---|
| committer | Jack Nagel | 2012-02-25 13:35:20 -0600 |
| commit | 0e82431bce72d138e0ac49b4ce0f7b4af4dfc26f (patch) | |
| tree | 17c825496e5034f4cbd80e35870a2f227e7a615e | |
| parent | b380699e73765f84919738236666c65fce2c2ad3 (diff) | |
| download | homebrew-0e82431bce72d138e0ac49b4ce0f7b4af4dfc26f.tar.bz2 | |
Remove parsley and argp-standalone
Parsley is head-only with no stable versions available, and hasn't been
updated for two years. argp-standalone is only used by parsley and does
not have a real homepage.
Closes #10458.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/argp-standalone.rb | 15 | ||||
| -rw-r--r-- | Library/Formula/parsley.rb | 23 |
2 files changed, 0 insertions, 38 deletions
diff --git a/Library/Formula/argp-standalone.rb b/Library/Formula/argp-standalone.rb deleted file mode 100644 index b37389a53..000000000 --- a/Library/Formula/argp-standalone.rb +++ /dev/null @@ -1,15 +0,0 @@ -require 'formula' - -class ArgpStandalone < Formula - homepage 'http://www.lysator.liu.se/~nisse/misc/' - url 'http://www.lysator.liu.se/~nisse/misc/argp-standalone-1.3.tar.gz' - md5 '720704bac078d067111b32444e24ba69' - - def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" - system "make" - - include.install 'argp.h', 'argp-fmtstream.h', 'argp-namefrob.h' - lib.install 'libargp.a' - end -end diff --git a/Library/Formula/parsley.rb b/Library/Formula/parsley.rb deleted file mode 100644 index f3cf71980..000000000 --- a/Library/Formula/parsley.rb +++ /dev/null @@ -1,23 +0,0 @@ -require 'formula' - -class Parsley < Formula - head 'https://github.com/fizx/parsley.git' - homepage 'https://github.com/fizx/parsley' - - depends_on 'json-c' - depends_on 'pcre' - depends_on 'argp-standalone' - - def install - argp = Formula.factory("argp-standalone").prefix - - # remove the refs to /opt/local and use this opportunity to link to argp - inrepace "configure" do |s| - s.gsub! '-L/opt/local/lib', "-L#{argp}" - s.gsub! '-I/opt/local/include', "-I#{argp}" - end - - system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" - system "make install" - end -end |
