mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-28 19:26:04 +01:00
39 lines
849 B
Bash
39 lines
849 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit versionator
|
|
|
|
MY_PV=( $(get_version_component_range 1-2) )
|
|
MY_PV_PRE="20150601.060031-26"
|
|
|
|
DESCRIPTION="Tools to work with android .dex and java .class files"
|
|
HOMEPAGE="https://github.com/pxb1988/dex2jar/releases"
|
|
SRC_URI="https://github.com/pxb1988/dex2jar/releases/download/${MY_PV}-nightly-26/dex-tools-${MY_PV}-${MY_PV_PRE}.zip"
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
RDEPEND="|| ( virtual/jre virtual/jdk )"
|
|
|
|
S="${WORKDIR}/${PN}-${MY_PV}-SNAPSHOT"
|
|
|
|
src_prepare() {
|
|
rm *.bat
|
|
chmod a+x *.sh
|
|
rm *.txt
|
|
|
|
cd lib
|
|
rm *.txt
|
|
}
|
|
|
|
src_install() {
|
|
dodir /opt/"${PN}"
|
|
cp -R "${S}"/* "${ED}/opt/"${PN}"" || die "Install failed!"
|
|
for i in *.sh; do
|
|
dosym /opt/dex2jar/${i} /usr/bin/${i##*/}
|
|
done
|
|
}
|