1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-01-05 05:14:14 +01:00

new ebuilds: screenkey, ppsspp, azpainterb, primus, apktool

This commit is contained in:
root
2016-08-08 16:35:52 +02:00
parent 1f1ccf379d
commit 6847cc1089
14 changed files with 374 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
DESCRIPTION="A tool for reengineering 3rd party, closed, binary Android apps"
HOMEPAGE="http://code.google.com/p/android-apktool/"
SRC_URI="http://connortumbleson.com/apktool/test_versions/apktool_2.0.0b9.jar"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="|| ( virtual/jre:1.7 virtual/jdk:1.7 )
dev-util/android-sdk-update-manager"
S="${WORKDIR}"
src_unpack() {
cp "${DISTDIR}/${A}" "${WORKDIR}/${PN}.jar"
}
src_install() {
exeinto /usr/bin
doexe ${FILESDIR}/apktool
insinto /opt/${PN}/
doins apktool.jar
}