homebrew-core/Formula/capstone.rb

17 lines
481 B
Ruby
Raw Normal View History

require 'formula'
class Capstone < Formula
homepage 'http://capstone-engine.org'
url 'http://capstone-engine.org/download/2.0/capstone-2.0.tgz'
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"
end
end