I am planning to package FBuntu into PPA for easier distribution.
The nature of this app is that the user has to make specific edits to the auth.py file to make it work and hence I am stuck from proceeding any further.
A default first couple of lines of auth.py looks like this:
import facebook
class facebookAuthentication:
def __init__(self):
url = "https://..."
self.parse_url(url)
The user after branching FBuntu from the bazaar, has to manually edit the url with the one you get after authenticating with Facebook. I have no idea on how to make an app be edited after a deb package has been generated.
Any guidance on how to proceed with packaging this would be welcome.