aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ps2eps.rb
diff options
context:
space:
mode:
authorJack Nagel2014-05-30 13:17:26 -0500
committerJack Nagel2014-05-30 13:17:29 -0500
commitdbe23ee357bb069a7e5b4ce06e8466feb3aadbeb (patch)
tree5407223aca52342873d023907b520b0bb92f0bf0 /Library/Formula/ps2eps.rb
parentafff2b2377e67bb9a7220cbc8de62b91b06e5ce8 (diff)
downloadhomebrew-dbe23ee357bb069a7e5b4ce06e8466feb3aadbeb.tar.bz2
Remove some unnecessary usage of Dir[]
Diffstat (limited to 'Library/Formula/ps2eps.rb')
-rw-r--r--Library/Formula/ps2eps.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Formula/ps2eps.rb b/Library/Formula/ps2eps.rb
index 6f2fd502f..f2c513f31 100644
--- a/Library/Formula/ps2eps.rb
+++ b/Library/Formula/ps2eps.rb
@@ -11,10 +11,8 @@ class Ps2eps < Formula
def install
system "#{ENV.cc} #{ENV.cflags} src/C/bbox.c -o bbox"
- bin.install 'bin/ps2eps'
- bin.install 'bbox'
- share.install Dir['doc/man']
- doc.install Dir['doc/pdf']
- doc.install Dir['doc/html']
+ bin.install "bin/ps2eps", "bbox"
+ share.install "doc/man"
+ doc.install "doc/pdf", "doc/html"
end
end