So, I've written a neat little program that can analyse Japanese text and give the user various statistics regarding Kanji usage therein and I'd like to release this program to the world. The problem is, I have no idea how to create a "release".
I realize that *nix systems often put executables (or symlinks) in places like /usr/bin, and that build scripts often put them there automatically, but it turns out I went and wrote this thing in Haskell.
Then just use cabal!
...I hear you say. Well I would, except that my program has a good amount of data files that it reads out of, and of course the program needs to know where those files are. By using cabal, would the executable not be thrown to some weird project filepath a la:
/usr/share/haskell/cabal/morecabal-1.0.4/myproject-1.3.4.1.a/thisisridiculous/
At current I run the executable out of its source directory, and it's looking for the data files in "./data". Is there a typical format for installation paths so I could tell my program ahead of time in the source where to look for the data?
My eventual goal is to make this an Arch Linux package. Can anyone help me get started?
For the curious, the git repo is here. Thanks in advance for any help you can give.