You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
438 B
16 lines
438 B
require 'formula' |
|
|
|
class Capstone < Formula |
|
homepage 'http://capstone-engine.org' |
|
url 'http://capstone-engine.org/download/2.1.2/capstone-2.1.2.tgz' |
|
sha1 '235ceab369025fbad9887fe826b741ca84b1ab41' |
|
|
|
def install |
|
# Fixed upstream in next version: |
|
# https://github.com/aquynh/capstone/commit/xxxx |
|
ENV["PREFIX"] = prefix |
|
ENV["HOMEBREW_CAPSTONE"] = "1" |
|
system "./make.sh" |
|
system "./make.sh", "install" |
|
end |
|
end
|
|
|