For installing software, each 'platform' has its own package manager : brew, apt, pip, Bundle, etc ...
But for plain old compiled project, is there any standard for declaring dependencies in an actionable way, amenable go (brew,apt,yum..) install
all of them?
As of now, I
- look at whatever
./configure
complains about, - brew install
- add to the -L path etc...
This is quite tedious and ineffective, but I dont know any better way.
Is there such a standard mechanism I missed for plain old source code ?