24 lines
521 B
Ruby
24 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
|