require 'formula' class Asciidoc < Formula homepage 'http://www.methods.co.nz/asciidoc' url 'https://downloads.sourceforge.net/project/asciidoc/asciidoc/8.6.9/asciidoc-8.6.9.tar.gz' sha1 '82e574dd061640561fa0560644bc74df71fb7305' head do url 'https://code.google.com/p/asciidoc/', :using => :hg depends_on :autoconf end depends_on 'docbook' def install system "autoconf" if build.head? system "./configure", "--prefix=#{prefix}" # otherwise OS X's xmllint bails out inreplace 'Makefile', '-f manpage', '-f manpage -L' system "make install" end def caveats; <<-EOS.undent If you intend to process AsciiDoc files through an XML stage (such as a2x for manpage generation) you need to add something like: export XML_CATALOG_FILES=#{HOMEBREW_PREFIX}/etc/xml/catalog to your shell rc file so that xmllint can find AsciiDoc's catalog files. See `man 1 xmllint' for more. EOS end end 7.0'>ranger-1.7.0 :beer: The missing package manager for OS X.
aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wireshark.rb
blob: 8928be3724fd3888ca91fedc7cb1bc961b825655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57