We are using SCons for all our build need, and we would like to distribute a library in open source.
Now most softwares uses ./configure, make and make install as build mechanism, we were wondering how we should bundle our library.
We have the following solutions:
- Just bundle like the way it is, requiring scons to build.
- Add a dummy configure and makefile that just call scons.
- Add autoconf and a makefile.
How it is perceived to get a software requiring python and scons to build?