aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/capstone.rb
diff options
context:
space:
mode:
authorNguyen Anh Quynh2014-02-19 07:43:20 +0800
committerAdam Vandenberg2014-02-21 07:39:45 -0800
commit4361670ddfc62aaac1e53e3ef1dfda0976cf597d (patch)
tree6f6f22cbbb398d7f044f20dc04126c1b496d2478 /Library/Formula/capstone.rb
parent689d4caadf071e039d4beb84823f4193d351d393 (diff)
downloadhomebrew-4361670ddfc62aaac1e53e3ef1dfda0976cf597d.tar.bz2
capstone: install to proper lib folder
Closes #26826. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/capstone.rb')
-rw-r--r--Library/Formula/capstone.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/capstone.rb b/Library/Formula/capstone.rb
index 3f28e479e..ebcdaf0a8 100644
--- a/Library/Formula/capstone.rb
+++ b/Library/Formula/capstone.rb
@@ -6,6 +6,9 @@ class Capstone < Formula
sha1 '209cdc69518f754c5d7d07672d8e28cdda9feae7'
def install
+ # Fixed upstream in next version:
+ # https://github.com/aquynh/capstone/commit/dc0d04522fa6ca7222124f390f51eb9e106906f7.diff
+ inreplace 'Makefile', 'lib64', 'lib'
system "./make.sh"
ENV["PREFIX"] = prefix
system "./make.sh", "install"