NaturalDocs 1.52
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
28bc903871
commit
d2788c31ea
1 changed files with 20 additions and 0 deletions
20
Formula/naturaldocs.rb
Normal file
20
Formula/naturaldocs.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
require 'formula'
|
||||
|
||||
class Naturaldocs < Formula
|
||||
url 'http://downloads.sourceforge.net/project/naturaldocs/Stable%20Releases/1.52/NaturalDocs-1.52.zip'
|
||||
homepage 'http://www.naturaldocs.org/'
|
||||
md5 '68e3982acae57b6befdf9e75b420fd80'
|
||||
|
||||
def install
|
||||
# Remove batch files
|
||||
rm_rf Dir['*.bat']
|
||||
|
||||
# Install
|
||||
libexec.install Dir['*']
|
||||
chmod 0755, libexec+'NaturalDocs'
|
||||
bin.mkpath
|
||||
|
||||
# Symlink binary
|
||||
ln_s libexec+'NaturalDocs', bin+'NaturalDocs'
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue