homebrew-core/Formula/postmark.rb
Charlie Sharpsteen 4f9f0d0bf5 mirror support: Mirrors for kernel.org software
- All Debian software is now mirrored by ftp.us.debian.org.

- LibFFI is mirrored by ftp.sourceware.org.

- All kernel.org software is now mirrored by mirrorservice.org.

Fixes Homebrew/homebrew#7478.
2011-09-19 09:25:02 -07:00

13 lines
418 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'
md5 'b494167c2df1850004110ab28e5ad164'
def install
system "cc -o postmark postmark-*.c"
bin.install "postmark"
end
end