2011-03-10 05:11:03 +00:00
|
|
|
class A2ps < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Any-to-PostScript filter"
|
2015-07-10 20:54:51 +00:00
|
|
|
homepage "https://www.gnu.org/software/a2ps/"
|
2016-07-02 20:59:53 +00:00
|
|
|
url "https://ftpmirror.gnu.org/a2ps/a2ps-4.14.tar.gz"
|
2015-07-16 03:35:54 +00:00
|
|
|
mirror "https://ftp.gnu.org/gnu/a2ps/a2ps-4.14.tar.gz"
|
|
|
|
sha256 "f3ae8d3d4564a41b6e2a21f237d2f2b104f48108591e8b83497500182a3ab3a4"
|
2010-08-20 15:40:38 +00:00
|
|
|
|
2014-12-31 08:44:04 +00:00
|
|
|
bottle do
|
2015-10-08 20:21:36 +00:00
|
|
|
cellar :any_skip_relocation
|
|
|
|
revision 2
|
|
|
|
sha256 "95e6cd96cc753d9d632ac8aa1b9d5099d5507c5fb8fc085544803fd85a4bd7c8" => :el_capitan
|
|
|
|
sha256 "c89521bb6b3df6a8277564f264006bde650b7d214b288f4805da856a76ec3b69" => :yosemite
|
|
|
|
sha256 "d10db3452567e6d4a6be65f15728c40b4a62bcc374e04ff7f5d3608c294c74f4" => :mavericks
|
2014-12-31 08:44:04 +00:00
|
|
|
end
|
|
|
|
|
2015-10-07 16:46:21 +00:00
|
|
|
# Software was last updated in 2007.
|
2012-02-09 04:44:43 +00:00
|
|
|
# https://svn.macports.org/ticket/20867
|
2015-07-16 03:35:54 +00:00
|
|
|
# https://trac.macports.org/ticket/18255
|
2014-03-14 15:03:23 +00:00
|
|
|
patch :p0 do
|
2016-05-27 19:54:59 +00:00
|
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/0ae366e6/a2ps/patch-contrib_sample_Makefile.in"
|
2015-07-16 03:35:54 +00:00
|
|
|
sha256 "5a34c101feb00cf52199a28b1ea1bca83608cf0a1cb123e6af2d3d8992c6011f"
|
2014-03-14 15:03:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
patch :p0 do
|
2016-05-27 19:54:59 +00:00
|
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/0ae366e6/a2ps/patch-lib__xstrrpl.c"
|
2015-07-16 03:35:54 +00:00
|
|
|
sha256 "89fa3c95c329ec326e2e76493471a7a974c673792725059ef121e6f9efb05bf4"
|
2010-08-20 15:40:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2015-10-08 19:15:21 +00:00
|
|
|
"--prefix=#{prefix}", "--sysconfdir=#{etc}",
|
2016-07-22 03:10:39 +00:00
|
|
|
"--with-lispdir=#{elisp}"
|
2014-12-31 08:30:40 +00:00
|
|
|
system "make", "install"
|
2010-08-20 15:40:38 +00:00
|
|
|
end
|
2014-12-31 08:32:55 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"test.txt").write("Hello World!\n")
|
2016-07-22 03:10:39 +00:00
|
|
|
system bin/"a2ps", "test.txt", "-o", "test.ps"
|
2014-12-31 08:32:55 +00:00
|
|
|
assert File.read("test.ps").start_with?("")
|
|
|
|
end
|
2010-08-20 15:40:38 +00:00
|
|
|
end
|