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

class Sendemail < Formula
  homepage 'http://caspian.dotconf.net/menu/Software/SendEmail/'
  url 'http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz'
  sha1 '5c7c03ce60785c7b7695ec486c84d6e15704df38'

  def install
    bin.install 'sendEmail'
  end

  test do
    `#{bin}/sendemail`.strip =~ /sendemail-#{Regexp.escape(version)}/
  end
end