mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-25 16:20:55 +02:00
33 lines
714 B
Bash
33 lines
714 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="4"
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A tool for reengineering 3rd party, closed, binary Android apps."
|
|
HOMEPAGE="http://code.google.com/p/android-apktool/"
|
|
SRC_URI="http://android-${PN}.googlecode.com/files/${PN}${PV}.tar.bz2
|
|
http://android-${PN}.googlecode.com/files/${PN}-install-linux-r04-brut1.tar.bz2"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-util/android-sdk-update-manager"
|
|
|
|
src_prepare() {
|
|
epatch "$FILESDIR"/apktool.patch
|
|
}
|
|
|
|
src_install() {
|
|
exeinto /usr/bin
|
|
doexe apktool
|
|
doexe aapt
|
|
insinto /usr/lib
|
|
doins apktool.jar
|
|
}
|