2010-05-15 03:59:34 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Btpd < Formula
|
2010-11-10 18:16:28 +00:00
|
|
|
url 'https://github.com/downloads/btpd/btpd/btpd-0.16.tar.gz'
|
|
|
|
homepage 'https://github.com/btpd/btpd'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'fb7d396ed5c224dc6e743ac481e4feb4a3cf7b75'
|
2010-05-15 03:59:34 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|