aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/btpd.rb
blob: fa6242f415d5dd741c17830d3a81b0fbd95e2ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Btpd <Formula
  url 'http://www.murmeldjur.se/btpd/btpd-0.15.tar.gz'
  homepage 'http://www.murmeldjur.se/btpd/'
  md5 'b64e2e8b9936e99685bc1e7246655561'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end