aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-04-18 20:40:13 -0700
committerAdam Vandenberg2012-04-18 20:40:13 -0700
commitc8fc2ba9c44ae8fd1e3b1a1ec4bf7f3558e3c7f4 (patch)
treed534372a82cc3ab521600ff8bb4611c1c82b8ce7 /Library/Formula
parentfd5ea5702306776099fc81aac9c14d1de2ea6909 (diff)
downloadhomebrew-c8fc2ba9c44ae8fd1e3b1a1ec4bf7f3558e3c7f4.tar.bz2
smpeg: use make install
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/smpeg.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/smpeg.rb b/Library/Formula/smpeg.rb
index cd0890f2d..e81777449 100644
--- a/Library/Formula/smpeg.rb
+++ b/Library/Formula/smpeg.rb
@@ -19,9 +19,8 @@ class Smpeg < Formula
"--disable-gtktest",
"--disable-sdltest"
system "make"
- lib.install Dir[".libs/*.dylib"]
- bin.install ".libs/plaympeg"
- bin.install "./smpeg-config"
- include.install Dir["*.h"]
+ # Install script is not +x by default for some reason
+ system "chmod +x ./install-sh"
+ system "make install"
end
end