blob: 8fe4c1cfb7c23f029e876efaa46a59be45981a85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Btpd < Formula
url 'https://github.com/downloads/btpd/btpd/btpd-0.16.tar.gz'
homepage 'https://github.com/btpd/btpd'
md5 'fe042aae8d7c515ecd855673d1c2b33e'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|