homebrew-core/Formula/capstone.rb

15 lines
347 B
Ruby
Raw Normal View History

require 'formula'
class Capstone < Formula
homepage 'http://capstone-engine.org'
2014-04-01 08:25:58 +00:00
url 'http://capstone-engine.org/download/2.1.2/capstone-2.1.2.tgz'
sha1 '235ceab369025fbad9887fe826b741ca84b1ab41'
def install
ENV["PREFIX"] = prefix
2014-04-01 08:25:58 +00:00
ENV["HOMEBREW_CAPSTONE"] = "1"
system "./make.sh"
system "./make.sh", "install"
end
end