diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/remind.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/remind.rb b/Library/Formula/remind.rb new file mode 100644 index 000000000..3cf191175 --- /dev/null +++ b/Library/Formula/remind.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Remind <Formula + url 'http://www.roaringpenguin.com/files/download/remind-03.01.07.tar.gz' + homepage 'http://www.roaringpenguin.com/products/remind' + md5 '9335189e78a11b78d848aeade30058d6' + + def install + configure_args = [ + "--prefix=#{prefix}", + "--disable-debug", + "--disable-dependency-tracking", + ] + system "./configure", *configure_args + system "make install" + end +end |
