Build a signed index in jar format, to be used by the next version of the client

This commit is contained in:
Ciaran Gultnieks 2011-01-29 09:32:21 +00:00
parent cbd42b2a62
commit f0fa241751
4 changed files with 69 additions and 14 deletions

View file

@ -17,6 +17,15 @@ The official FDroid repository. Applications in this repository are official
binaries built by the original application developers.
"""
#The key (from the keystore defined below) to be used for signing the
#repository itself. Can be none for an unsigned repository.
repo_keyalias = None
#If you're building a signed repository, you need the public key here. You
#can get the public key in the correct format by using 'getsig -f x.jar" where
#x.jar is any jar you have signed with it.
repo_pubkey = 'not set'
#The keystore to use for release keys when building. This needs to be
#somewhere safe and secure, and backed up!
keystore = "/home/me/somewhere/my.keystore"