blob: 4c4426f97e5b7b56f4b71424b546a908f8f291a2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | 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'
  md5 'b494167c2df1850004110ab28e5ad164'
  def install
    system "cc -o postmark postmark-*.c"
    bin.install "postmark"
  end
end
 |