apktool: v2.2.4 bump

This commit is contained in:
blshkv 2017-08-05 15:42:15 +08:00
parent b78c364cec
commit 72da9130ac
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 31 additions and 0 deletions

View file

@ -1 +1,2 @@
DIST apktool-2.2.3.jar 8276299 SHA256 8d05868a9fdef7ed43742b44f45c10a77263526b236e478cc9602d6a4e053f87 SHA512 f48434a6488b68d2288858c28618a3645d6b5acf638f552ddfe5c3d2a4beb977ef2ac8c9c0a567caee974e0d0eb122e790b3b7a50ea2b7b03cb4cbf2ea01e2d4 WHIRLPOOL e1d3f4f23aa031309671f002968c468cc5958f5abad7e39b4fa03fcc08441525a15c5f50318ff95ceb3e4d1a2091c5ad734ff901e1c4f342839fd81566e59111
DIST apktool-2.2.4.jar 7254673 SHA256 1f1f186edcc09b8677bc1037f3f812dff89077187b24c8558ca2a89186ea3251 SHA512 30856afc1ebeb2326863120df16741f881d917442689b3031907d6dbe74fed74bedef4794e1199beeb7c9cb17a5103e2bd2eddc44816c349faf768018ca9e3a5 WHIRLPOOL 221b51b1bb48726e90b685064f686079b6d63965043846996eda4b4bde5bfa960182508d698756b7afeb80f8a241128958c4b305995d8b7dd39e5c64ec4b38ff

View file

@ -0,0 +1,30 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A tool for reengineering 3rd party, closed, binary Android apps."
HOMEPAGE="http://ibotpeaches.github.io/Apktool/"
SRC_URI="https://bitbucket.org/iBotPeaches/apktool/downloads/${PN}_${PV}.jar -> ${P}.jar"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="|| ( virtual/jre virtual/jdk )
dev-util/android-sdk-update-manager"
S="${WORKDIR}"
src_unpack() {
dodir "${S}"
cp -L "${DISTDIR}/${A}" "${S}/${PN}.jar" || die
}
src_install() {
dobin "${FILESDIR}/apktool"
insinto "/opt/${PN}/"
doins apktool.jar
}