blob: 4d4c4c83573db5ad5c940d199237e7fd7db56d16 (
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
|
require 'formula'
class Mpdas < Formula
url 'http://www.50hz.ws/mpdas/mpdas-0.2.5.tar.bz2'
homepage 'http://www.50hz.ws/mpdas/'
md5 'ea852645079be1aeedfe3e88f421917e'
head 'https://github.com/hrkfdn/mpdas.git'
depends_on 'pkg-config' => :build
depends_on 'libmpd'
def install
ENV['PREFIX'] = prefix
ENV['MANPREFIX'] = man
ENV['CONFIG'] = etc
ENV.j1
system "make"
# Just install ourselves
bin.install "mpdas"
man1.install "mpdas.1"
end
def caveats
"Read #{prefix}/README on how to configure mpdas."
end
end
|