mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
new file: projects/apktool.org/package.yml
This commit is contained in:
parent
1ecfb80139
commit
b2ba9aff7a
1 changed files with 37 additions and 0 deletions
37
projects/apktool.org/package.yml
Normal file
37
projects/apktool.org/package.yml
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
distributable:
|
||||||
|
url: https://github.com/iBotPeaches/Apktool/releases/download/v{{version}}/apktool_{{version}}.jar
|
||||||
|
|
||||||
|
versions:
|
||||||
|
github: iBotPeaches/Apktool
|
||||||
|
|
||||||
|
warnings:
|
||||||
|
- vendored
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
openjdk.org: ^20
|
||||||
|
|
||||||
|
build:
|
||||||
|
script:
|
||||||
|
- run: mkdir -p bin libexec/lib
|
||||||
|
working-directory: ${{prefix}}
|
||||||
|
- cp apktool.org-{{version}}.jar {{prefix}}/libexec/lib/
|
||||||
|
- run: |
|
||||||
|
echo '#!/bin/sh' > apktool
|
||||||
|
echo 'java -jar $(dirname $0)/../libexec/lib/apktool.org-{{version}}.jar "$@"' >> apktool
|
||||||
|
chmod +x apktool
|
||||||
|
working-directory: ${{prefix}}/bin
|
||||||
|
|
||||||
|
provides:
|
||||||
|
- bin/apktool
|
||||||
|
|
||||||
|
test:
|
||||||
|
dependencies:
|
||||||
|
curl.se: '*'
|
||||||
|
script:
|
||||||
|
- apktool --version | grep {{version}}
|
||||||
|
- curl -L "$TEST_APK" -o test.apk
|
||||||
|
- apktool d test.apk
|
||||||
|
- apktool b test
|
||||||
|
- ls test/dist | grep test.apk
|
||||||
|
env:
|
||||||
|
TEST_APK: https://raw.githubusercontent.com/facebook/redex/fa32d542d4074dbd485584413d69ea0c9c3cbc98/test/instr/redex-test.apk
|
Loading…
Reference in a new issue