Alternative to checkinstall

https://unix.stackexchange.com/questions/16375/keeping-track-of-programs

1
2
3
4
5
./configure --prefix /usr/local/stow/PROGRAM_NAME
make
make install
cd /usr/local/stow
stow PROGRAM_NAME

When you want to remove the symlinks created in /usr/local/ for your particular program:

1
stow -D PROGRAM_NAME

Extremely useful in Cygwin where checkinstall and package managers aren’t available.

Comments

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×