diff options
| -rw-r--r-- | Library/Formula/pcal.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/pcal.rb b/Library/Formula/pcal.rb new file mode 100644 index 000000000..eadddd861 --- /dev/null +++ b/Library/Formula/pcal.rb @@ -0,0 +1,23 @@ +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 |
