23 lines
814 B
Ruby
23 lines
814 B
Ruby
class Tnef < Formula
|
|
desc "Microsoft MS-TNEF attachment unpacker"
|
|
homepage "https://github.com/verdammelt/tnef"
|
|
url "https://github.com/verdammelt/tnef/archive/1.4.13.tar.gz"
|
|
sha256 "e1d0eb2ba1f7e4689158cf3dfe10ed1571ea239eedc223b830331c6b0fbfcbf7"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "f16d41879d9eb670fd67c74511f2aa6fd6f1e9cfd3d09f4cacd743c781414db5" => :sierra
|
|
sha256 "8ad0c07995a560fa616d06dddb7c9441bf8801e3975e0930e848d2c6188d850d" => :el_capitan
|
|
sha256 "e30a805ba061861a3ac3afcfe731c1b314402c93dd6a935f674d0459eaf225cc" => :yosemite
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
|
|
def install
|
|
system "autoreconf", "-i"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|