blob: 9a411dbe368be48ce5d95dab8fd3ad44b59dce0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | 
require 'formula'
class Mpack < Formula
  homepage 'http://ftp.andrew.cmu.edu/pub/mpack/'
  url 'http://ftp.andrew.cmu.edu/pub/mpack/mpack-1.6.tar.gz'
  sha1 '7fd3a73e0f131412920b6ff34872e7e7fa03e03b'
  # Fix missing return value; clang refuses to compile otherwise
  def patches
    {:p0 => [
    "https://trac.macports.org/export/96943/trunk/dports/mail/mpack/files/uudecode.c.patch"
    ]}
  end
  def install
    system "./configure", "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
end
  |