mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-30 02:30:58 +02:00
apktool: 2.4.0 bump
This commit is contained in:
parent
3dd109e9c5
commit
a8c4d6011e
2 changed files with 32 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST apktool-2.3.3.jar 9302116 BLAKE2B 9017cab79bec224c44f0d7acf33b342f2a07f576d478f979c0d5c901a6952013fa9b9c58044535a22363525d3f92ed6ec57dc461e31d04434cc59fff0bb9a082 SHA512 eb519a94a4aecc1358f4a1cc84e03c772d8b59edf8b5e37956a756f0cc2673c5d9d976ad6796543db74cf187763077b4bbcd0519e7f7be845c0e9874d4862353
|
||||
DIST apktool-2.3.4.jar 11003267 BLAKE2B 4ee9d5b4d69ecb74eb54db991366ee4b31985bcfe599dbee9a5a27cd644fa4188c831968581e2a9f40e8c0004349f3c7f41d97855f85bfd1ac57aa57f4cd143d SHA512 6503fe3e80f83b09e07e97d7888a7fa686e46b0e7a8501de13e134047cd0533bb3ce80f776e63ee4056eae77dad991481bc68dd423fae69766bad11157e253f3
|
||||
DIST apktool-2.4.0.jar 16314178 BLAKE2B 8e7b68e9576ead8a8448c823d081db369c4ecf1ce3972c9cdc97ab0db4197d39ff003e275e9c13a934eff509306c477448711cded939e99b01f8393463a3b795 SHA512 59f2e76abf5491cae0168e458ab93a1285dbc160498134bf9d9b7c6a648b3e066b013c0fe6acd968c31fed2ed19e57b3400c35e662cdfa46ec0dce6441f6927c
|
||||
|
|
|
|||
31
dev-util/apktool/apktool-2.4.0.ebuild
Normal file
31
dev-util/apktool/apktool-2.4.0.ebuild
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# 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"
|
||||
#SRC_URI="https://github.com/iBotPeaches/Apktool/releases/download/v${PV}/apktool_${PV}.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
|
||||
}
|
||||
Loading…
Reference in a new issue