├── .gitignore ├── LICENSE ├── README.md ├── examples └── helloworld │ ├── .gitignore │ ├── app │ ├── bin │ │ └── helloworld.sh │ └── dsm │ │ ├── config │ │ ├── images │ │ ├── icon_256.png │ │ └── icon_64.png │ │ └── index.html │ ├── build.xml │ ├── ivy.xml │ ├── makefile │ └── spk │ ├── scripts │ ├── postinst │ ├── postuninst │ ├── postupgrade │ ├── preinst │ ├── preuninst │ ├── preupgrade │ └── start-stop-status │ └── wizard │ └── install_uifile ├── makefile └── src └── main ├── java └── net │ └── filebot │ └── ant │ └── spk │ ├── CodeSignTask.java │ ├── Compression.java │ ├── Icon.java │ ├── Info.java │ ├── PackageTask.java │ ├── RepositoryTask.java │ ├── SPK.java │ ├── pgp │ ├── OpenPGPSecretKey.java │ └── OpenPGPSignature.java │ └── util │ └── Digest.java └── resources └── net └── filebot └── ant └── spk └── antlib.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/README.md -------------------------------------------------------------------------------- /examples/helloworld/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /examples/helloworld/app/bin/helloworld.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Hello World!" 3 | -------------------------------------------------------------------------------- /examples/helloworld/app/dsm/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/app/dsm/config -------------------------------------------------------------------------------- /examples/helloworld/app/dsm/images/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/app/dsm/images/icon_256.png -------------------------------------------------------------------------------- /examples/helloworld/app/dsm/images/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/app/dsm/images/icon_64.png -------------------------------------------------------------------------------- /examples/helloworld/app/dsm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/app/dsm/index.html -------------------------------------------------------------------------------- /examples/helloworld/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/build.xml -------------------------------------------------------------------------------- /examples/helloworld/ivy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/ivy.xml -------------------------------------------------------------------------------- /examples/helloworld/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/makefile -------------------------------------------------------------------------------- /examples/helloworld/spk/scripts/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /examples/helloworld/spk/scripts/postuninst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /examples/helloworld/spk/scripts/postupgrade: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /examples/helloworld/spk/scripts/preinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /examples/helloworld/spk/scripts/preuninst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /examples/helloworld/spk/scripts/preupgrade: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /examples/helloworld/spk/scripts/start-stop-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/spk/scripts/start-stop-status -------------------------------------------------------------------------------- /examples/helloworld/spk/wizard/install_uifile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/examples/helloworld/spk/wizard/install_uifile -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/makefile -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/CodeSignTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/CodeSignTask.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/Compression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/Compression.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/Icon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/Icon.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/Info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/Info.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/PackageTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/PackageTask.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/RepositoryTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/RepositoryTask.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/SPK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/SPK.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/pgp/OpenPGPSecretKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/pgp/OpenPGPSecretKey.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/pgp/OpenPGPSignature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/pgp/OpenPGPSignature.java -------------------------------------------------------------------------------- /src/main/java/net/filebot/ant/spk/util/Digest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/java/net/filebot/ant/spk/util/Digest.java -------------------------------------------------------------------------------- /src/main/resources/net/filebot/ant/spk/antlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednoah/ant-spk/HEAD/src/main/resources/net/filebot/ant/spk/antlib.xml --------------------------------------------------------------------------------