79543497

Date: 2025-03-29 15:58:41
Score: 4.5
Natty: 4
Report link

I have the same query as in the question above.

Regarding the answer by @oliver

As a MWE, I wish to create a simple test package with 2 files.

$ cat hello.sh 
#!/usr/bin/sh
cat mydatafolder/data.txt

$ cat mydatafolder/data.txt 
Hello World!


hello-world-1.0 $ tree -L 1
.
├── debian
├── hello.sh
└── mydatafolder

3 directories, 1 file

Now how do I refer to data.txt so that the same incantation works both while creating the package and after installing it.

Here is what I tried:

hello-world-1.0$ cat debian/install 
hello.sh usr/bin
mydatafolder/* usr/share/mydatafolder
hello-world-1.0$ echo $XDG_DATA_DIRS 
/usr/share/gnome:/usr/local/share/:/usr/share/

When I create and install the package it says :

$ hello.sh
cat: mydatafolder/data.txt: No such file or directory

Should'nt mydatafolder which is in /usr/share/ be in the list of folders in $XDG_DATA_DIRS ? Is that not how it works? What am I missing?

Reasons:
  • Blacklisted phrase (1): how do I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @oliver
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: user2338823