2011-09-11 11:53:57 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Apktool < Formula
|
2015-05-05 14:30:03 +00:00
|
|
|
homepage 'https://github.com/iBotPeaches/Apktool'
|
|
|
|
url 'https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.0.0.jar', :using => :nounzip
|
|
|
|
sha1 '577e351e5b06986c7e099ec33944934f3b9e31e1'
|
2011-09-11 11:53:57 +00:00
|
|
|
|
2013-08-07 05:15:31 +00:00
|
|
|
def install
|
2015-05-05 14:30:03 +00:00
|
|
|
libexec.install "apktool_#{version}.jar"
|
|
|
|
bin.write_jar_script libexec/"apktool_#{version}.jar", 'apktool'
|
2011-09-11 11:53:57 +00:00
|
|
|
end
|
|
|
|
end
|