aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2011-07-29 08:34:26 -0700
committerAdam Vandenberg2011-07-29 08:34:26 -0700
commit143cc7ee2ff10855fd3b798485f4538565a3599d (patch)
treeee0f42a9aadf5b59e9e7176f5f56b450e6926291 /Library/Formula
parent7f5ab8cedc14cb88452a4fd127dd108abec81fc5 (diff)
downloadhomebrew-143cc7ee2ff10855fd3b798485f4538565a3599d.tar.bz2
naturaldocs: fix audit warning
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/naturaldocs.rb26
1 files changed, 13 insertions, 13 deletions
diff --git a/Library/Formula/naturaldocs.rb b/Library/Formula/naturaldocs.rb
index 6a2065bd9..97a8b462f 100644
--- a/Library/Formula/naturaldocs.rb
+++ b/Library/Formula/naturaldocs.rb
@@ -1,20 +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'
+ 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']
+ def install
+ # Remove batch files
+ rm_rf Dir['*.bat']
- # Install
- libexec.install Dir['*']
- chmod 0755, libexec+'NaturalDocs'
- bin.mkpath
+ # Install
+ libexec.install Dir['*']
+ chmod 0755, libexec+'NaturalDocs'
+ bin.mkpath
- # Symlink binary
- ln_s libexec+'NaturalDocs', bin+'NaturalDocs'
- end
+ # Symlink binary
+ ln_s libexec+'NaturalDocs', bin+'NaturalDocs'
+ end
end