capstone/packages/homebrew/capstone.rb

17 lines
434 B
Ruby
Raw Normal View History

2014-02-11 17:57:33 +08:00
require 'formula'
class Capstone < Formula
homepage 'http://capstone-engine.org'
2014-10-02 16:34:05 +08:00
url 'http://capstone-engine.org/download/3.0/capstone-3.0.tgz'
2014-04-01 16:19:40 +08:00
sha1 '235ceab369025fbad9887fe826b741ca84b1ab41'
2014-02-11 17:57:33 +08:00
def install
# Fixed upstream in next version:
2014-04-01 16:19:40 +08:00
# https://github.com/aquynh/capstone/commit/xxxx
2014-02-11 17:57:33 +08:00
ENV["PREFIX"] = prefix
2014-03-29 23:08:25 +08:00
ENV["HOMEBREW_CAPSTONE"] = "1"
system "./make.sh"
2014-02-11 17:57:33 +08:00
system "./make.sh", "install"
end
end