24 lines
641 B
Bash
24 lines
641 B
Bash
# Template file for 'jadx'
|
|
pkgname=jadx
|
|
version=1.5.0
|
|
revision=1
|
|
hostmakedepends="openjdk11 gradle"
|
|
short_desc="Decompiler for Dalvik bytecode"
|
|
maintainer="Andrew Benson <abenson+void@gmail.com>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/skylot/jadx"
|
|
distfiles="https://github.com/skylot/jadx/archive/v${version}.tar.gz"
|
|
checksum=7b72f104d7e735ff329b3cbd286364e88073e5db2d5c86d6596c24371065197d
|
|
|
|
do_build() {
|
|
gradle copyArtifacts
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/share
|
|
vcopy build/jadx usr/share
|
|
vmkdir usr/bin
|
|
ln -s /usr/share/jadx/bin/jadx ${DESTDIR}/usr/bin/jadx
|
|
ln -s /usr/share/jadx/bin/jadx-gui ${DESTDIR}/usr/bin/jadx-gui
|
|
}
|