I'm trying to create a homebrew formula for an application that doesn't need to be compiled. I've tried looking through the formula cookbook, but I'm missing something to make things properly work. Below is my use-case with more generic filenames.
Inside the container is two files: one is the script for the application, the other being a file for man pages. We'll use the following filenames to keep things generic:
- myapp.py (executable script)
- resource.txt (a resource file that the script needs)
- myapp.1 (man page)
What are the best ways to get these into the correct locations? Presume I have the ability to modify the code in the script for choosing the location to load the resource.
Thanks.