blob: 91bf6c461042b1ee5cbd3fbe78b495ee69b460a5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | require "formula"
class Davmail < Formula
  homepage "http://davmail.sourceforge.net/"
  url "https://downloads.sourceforge.net/project/davmail/davmail/4.5.1/davmail-4.5.1-2303.zip"
  sha1 "4b524832b432216d2b8dfa97198c50681a1734ce"
  def install
    libexec.install Dir['*']
    bin.write_jar_script libexec/"davmail.jar", "davmail"
  end
end
 |