homebrew-core/Formula/pcal.rb
Stephan Hügel 8f321bf191 pcal 4.11.0
Pcal is used to create monthly-format paper calendars in PostScript format
These can be output directly to PDF. Example:

http://www.leancrew.com/all-this/2012/01/paper-calendars-with-pcal/

Closes Homebrew/homebrew#9374.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-17 21:14:06 -07:00

23 lines
521 B
Ruby

require 'formula'
class Pcal < Formula
homepage 'http://pcal.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/pcal/pcal/pcal-4.11.0/pcal-4.11.0.tgz'
md5 '0ed7e9bec81fe3bdd62f8af283bef704'
skip_clean :all
def install
ENV.deparallelize
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
# Install manually; easier than fixing paths in makefile
bin.install 'exec/pcal'
man1.install gzip('doc/pcal.man') => 'pcal.1.gz'
end
def test
system "#{bin}/pcal"
end
end