aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-13 18:25:43 -0700
committerAdam Vandenberg2012-03-13 18:25:43 -0700
commitaf39ab546070268bffef9f1873174271e2bc33e9 (patch)
tree3d2fdc8a2c2e694bd9647fbfcb84fa14aeb88101 /Library
parentabb0fe0c70df0b74b32d802049615941133e435c (diff)
downloadhomebrew-af39ab546070268bffef9f1873174271e2bc33e9.tar.bz2
flip: don't call strip manually
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/flip.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/flip.rb b/Library/Formula/flip.rb
index bb4568381..e8996e402 100644
--- a/Library/Formula/flip.rb
+++ b/Library/Formula/flip.rb
@@ -1,13 +1,13 @@
require 'formula'
class Flip < Formula
- url 'https://ccrma.stanford.edu/~craig/utility/flip/flip.cpp'
homepage 'https://ccrma.stanford.edu/~craig/utility/flip/'
- md5 '21dc9256584eceffcfc27e137b3f8bc5'
+ url 'https://ccrma.stanford.edu/~craig/utility/flip/flip.cpp'
version '2005.8.21' # It has no version number, I made one up from the last modified date
+ md5 '21dc9256584eceffcfc27e137b3f8bc5'
def install
- system "#{ENV.cxx} #{ENV['CXXFLAGS']} -o flip flip.cpp && strip flip"
+ system "#{ENV.cxx} #{ENV['CXXFLAGS']} -o flip flip.cpp"
bin.install "flip"
end
end