2014-02-11 17:57:33 +08:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Capstone < Formula
|
|
|
|
homepage 'http://capstone-engine.org'
|
2014-03-05 08:19:44 +08:00
|
|
|
url 'http://capstone-engine.org/download/2.1/capstone-2.1.tgz'
|
|
|
|
sha1 '3e5fe91684cfc76d73caa857a268332ac9d40659'
|
2014-02-11 17:57:33 +08:00
|
|
|
|
|
|
|
def install
|
2014-02-21 22:43:30 +08:00
|
|
|
inreplace 'Makefile', 'lib64', 'lib'
|
2014-02-11 17:57:33 +08:00
|
|
|
system "./make.sh"
|
|
|
|
ENV["PREFIX"] = prefix
|
|
|
|
system "./make.sh", "install"
|
|
|
|
end
|
|
|
|
end
|