aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-01-05 12:24:46 -0600
committerJack Nagel2012-01-05 12:24:46 -0600
commit1753f57061822ce41c45a95c01fb53af2d42f40a (patch)
treed80a3559b9b8a6366841ebd5b28e56d49bdb9306 /Library/Formula
parenta3cb698ece009c487d6f747cd20c3b47a076b5e6 (diff)
downloadhomebrew-1753f57061822ce41c45a95c01fb53af2d42f40a.tar.bz2
netpbm: don't install junk to man
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/netpbm.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/netpbm.rb b/Library/Formula/netpbm.rb
index 65c688cf9..d585c428b 100644
--- a/Library/Formula/netpbm.rb
+++ b/Library/Formula/netpbm.rb
@@ -42,7 +42,9 @@ class Netpbm < Formula
Dir.chdir stage_dir do
prefix.install %w{ bin include lib misc }
- share.install Dir['man']
+ # do man pages explicitly; otherwise a junk file is installed in man/web
+ man1.install Dir['man/man1/*.1']
+ man5.install Dir['man/man5/*.5']
lib.install Dir['link/*.a']
end
end