You are not logged in.
What's the best way (™) to package software which isn't simply downloadable?
See the PKGBUILD I came up with - basically I tell the user to put the download into /tmp, and then check the checksum myself. Is there anything I could do nicer?
Thanks,
Florian
>>> from __future__ import braces
File "<stdin>", line 1
SyntaxError: not a chance
Offline
It would probably be better to simply have a note in the PKGBUILD that tells the user to download the source and stick it in the same directory as the PKGBUILD. Then add the filename to the sources array (without the leading path). Then of course make sure that it is also included in the md5sums, or whatever checksum you choose to use. This will greatly simplify your PKGBUILD.
Edit: So change the source to:
source=("PebbleSDK-${pkgver//_/-}.tar.gz"
'python-waf.patch')Last edited by WonderWoofy (2013-12-17 06:17:11)
Offline