1

My software, I'm trying to distribute as a Click package, has files that must be copied into several different directories. How can I achieve this?
When it comes to deb packages I use dpkg -b command, which makes it so easy.
Thanks!

Naveen
  • 9,365
  • 11
  • 43
  • 70

1 Answers1

1

click build . builds the package for the current directory

  • Thanks. Could you please tell me where can I find more information? I like to give the package a name and maintainer info as well. – Naveen Dec 13 '14 at 14:19
  • 1
    @Naveen the manifest is the app info, it contains what you want. I suggest looking at some of the pre-installed apps' manifests to see all the available fields, although the SDK's template has the main stuff covered – user2563892 Dec 13 '14 at 14:29