2010-06-23 02:19:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mpack < Formula
|
2010-06-23 02:19:46 +00:00
|
|
|
homepage 'http://ftp.andrew.cmu.edu/pub/mpack/'
|
2012-08-22 15:46:34 +00:00
|
|
|
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
|
2010-06-23 02:19:46 +00:00
|
|
|
|
|
|
|
def install
|
2012-08-22 15:46:34 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2010-06-23 02:19:46 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|