200fd87438
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
325 B
Ruby
12 lines
325 B
Ruby
require 'formula'
|
|
|
|
class Postmark <Formula
|
|
url 'ftp://ftp.us.debian.org/debian/pool/main/p/postmark/postmark_1.51.orig.tar.gz'
|
|
homepage 'http://packages.debian.org/stable/utils/postmark'
|
|
md5 'b494167c2df1850004110ab28e5ad164'
|
|
|
|
def install
|
|
system "cc -o postmark postmark-*.c"
|
|
bin.install "postmark"
|
|
end
|
|
end
|