require 'formula' class Ncmpcpp < Formula homepage 'http://ncmpcpp.rybczak.net/' url 'http://ncmpcpp.rybczak.net/stable/ncmpcpp-0.5.10.tar.bz2' sha1 '5e34733e7fbaf2862f04fdf8af8195ce860a9014' head do url 'git://repo.or.cz/ncmpcpp.git' depends_on :autoconf depends_on :automake depends_on :libtool depends_on 'boost' # not needed by stable depends_on 'readline' end depends_on 'pkg-config' => :build depends_on 'taglib' depends_on 'libmpdclient' depends_on 'fftw' if build.include? "visualizer" fails_with :clang do cause "'itsTempString' is a private member of 'NCurses::basic_buffer'" end if build.stable? option 'outputs', 'Compile with mpd outputs control' option 'visualizer', 'Compile with built-in visualizer' option 'clock', 'Compile with optional clock tab' def install ENV.append 'LDFLAGS', '-liconv' args = ["--disable-dependency-tracking", "--prefix=#{prefix}", "--with-taglib", "--with-curl", "--enable-unicode"] args << '--enable-outputs' if build.include? 'outputs' args << '--enable-visualizer' if build.include? 'visualizer' args << '--enable-clock' if build.include? 'clock' if build.head? # Also runs configure system "./autogen.sh", *args else system "./configure", *args end system "make install" end end href='/fork/angular.js/?h=v1.2.2'>summaryrefslogtreecommitdiffstats
path: root/validate-commit-msg.js
blob: 665135a73671adb3334662f2d84154d08f023e9f (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105