10
Question related to script distribution
(programming.dev)
Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.
Look into the install command.
Often folks will include a makefile with an install target that places the various needed files in the correct locations.
Correct me if I misunderstood, I will include
Makefile
, and when runmake install
it will executeinstall
command?Correct.
make install
command will invoke install once for each file you need put in place.Make is just a tool that I like to use, you could even just add an install.sh script that sets up all the needed files.
sorry to bother but I was thinking, should I consider
./install.sh
executed with root and non-root perm If so, essential files should placed in/usr/local/share
?Not sure I have enough context to really tell you what to do here. It's semi normal for folks to have scripts in /home//bin