Skip to content

Commit

Permalink
binkd 1.0.4 (new formula)
Browse files Browse the repository at this point in the history
Closes Homebrew/legacy-homebrew#48158.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
  • Loading branch information
dmirkitanov authored and MikeMcQuaid committed Jan 17, 2016
1 parent 733e78d commit 38e4712
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Formula/binkd.rb
@@ -0,0 +1,21 @@
class Binkd < Formula
desc "TCP/IP FTN Mailer"
homepage "http://binkd.grumbler.org/"
url "ftp://happy.kiev.ua/pub/fidosoft/mailer/binkd/binkd-1.0.4.tar.gz"
sha256 "917e45c379bbd1a140d1fe43179a591f1b2ec4004b236d6e0c4680be8f1a0dc0"

def install
cp Dir["mkfls/unix/*"].select { |f| File.file? f }, "."
inreplace "binkd.conf", "/var/", "#{var}/"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make", "install"
end

test do
system "#{sbin}/binkd", "-v"
end
end

0 comments on commit 38e4712

Please sign in to comment.