88779ade49
Closes Homebrew/homebrew#14653.
13 lines
427 B
Ruby
13 lines
427 B
Ruby
require 'formula'
|
|
|
|
class Postmark < Formula
|
|
url 'http://mirrors.kernel.org/debian/pool/main/p/postmark/postmark_1.51.orig.tar.gz'
|
|
mirror 'http://ftp.us.debian.org/debian/pool/main/p/postmark/postmark_1.51.orig.tar.gz'
|
|
homepage 'http://packages.debian.org/stable/utils/postmark'
|
|
sha1 '2cf0be75e3cb255f36fb1f3e412bcf8f81b39969'
|
|
|
|
def install
|
|
system "cc -o postmark postmark-*.c"
|
|
bin.install "postmark"
|
|
end
|
|
end
|