blob: f0f2bbb6b085ff32b5e69c32023989b03ebf8692 (
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
  | 
require 'formula'
class Headphones < Formula
  homepage 'https://github.com/rembo10/headphones'
  head 'https://github.com/rembo10/headphones.git'
  url 'https://github.com/rembo10/headphones/archive/v0.2.2.tar.gz'
  sha1 '268994b2f0b92b525e442a632fa4f875e8934e53'
  depends_on 'Cheetah' => :python
  def startup_script; <<-EOS.undent
    #!/bin/bash
    python "#{libexec}/Headphones.py" --datadir="#{etc}/headphones" "$@"
    EOS
  end
  def install
    libexec.install Dir['*']
    (bin+"headphones").write(startup_script)
  end
  plist_options :manual => 'headphones'
  def plist; <<-EOS.undent
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/$
    <plist version="1.0">
    <dict>
      <key>Label</key>
      <string>#{plist_name}</string>
      <key>ProgramArguments</key>
      <array>
        <string>#{opt_bin}/headphones</string>
        <string>-q</string>
        <string>-d</string>
        <string>--nolaunch</string>
      </array>
      <key>RunAtLoad</key>
      <true/>
    </dict>
    </plist>
    EOS
  end
  def caveats
    "Headphones defaults to port 8181."
  end
end
  |