homebrew-core/Formula/paps.rb
2013-04-22 15:19:04 -05:00

35 lines
961 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# encoding: UTF-8
require 'formula'
class Paps < Formula
homepage 'http://paps.sourceforge.net/'
url 'http://downloads.sourceforge.net/paps/paps-0.6.8.tar.gz'
sha1 '83646b0de89deb8321f260c2c5a665bc7c8f5928'
depends_on 'pkg-config' => :build
depends_on 'pango'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
test do
# http://paps.sourceforge.net/small-hello.utf8
utf8 = <<-EOS
paps by Dov Grobgeld (דב גרובגלד)
Printing through Παν (Pango)
Arabic السلام عليكم
Bengali ()
Greek (Ελληνικά) Γειά σας
Hebrew שָׁלוֹם
Japanese () ,
Chinese (,,)
Vietnamese (Tiếng Việt) Xin Chào
EOS
safe_system "echo '#{utf8}' | #{bin}/paps > paps.ps"
end
end