aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shell.fm.rb
blob: 10efe7a548b86ed19fda05e64fc9d05395897a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class ShellFm <Formula
  url 'http://github.com/jkramer/shell-fm/tarball/v0.7'
  version '0.7'
  homepage 'http://nex.scrapping.cc/shell-fm/'
  md5 '3f83866622a892ee89685f1ed079eefd'

  aka 'shell-fm'

  # homepage says that libao is optional, but it doesn't seem
  # to build without it…
  depends_on 'libao'
  depends_on 'mad'
  depends_on 'pkg-config'

  def install
    system "make"
    bin.install 'source/shell-fm'
    man1.install 'manual/shell-fm.1.gz'
  end
end