2011-07-28 12:58:34 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Naturaldocs < Formula
|
2011-07-29 15:34:26 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/naturaldocs/Stable%20Releases/1.52/NaturalDocs-1.52.zip'
|
|
|
|
homepage 'http://www.naturaldocs.org/'
|
|
|
|
md5 '68e3982acae57b6befdf9e75b420fd80'
|
2011-07-28 12:58:34 +00:00
|
|
|
|
2011-07-29 15:34:26 +00:00
|
|
|
def install
|
|
|
|
# Remove batch files
|
|
|
|
rm_rf Dir['*.bat']
|
2011-07-28 12:58:34 +00:00
|
|
|
|
2011-07-29 15:34:26 +00:00
|
|
|
# Install
|
|
|
|
libexec.install Dir['*']
|
|
|
|
chmod 0755, libexec+'NaturalDocs'
|
|
|
|
bin.mkpath
|
2011-07-28 12:58:34 +00:00
|
|
|
|
2011-07-29 15:34:26 +00:00
|
|
|
# Symlink binary
|
|
|
|
ln_s libexec+'NaturalDocs', bin+'NaturalDocs'
|
|
|
|
end
|
2011-07-28 12:58:34 +00:00
|
|
|
end
|