Hi all,
How can we create a software package. So that after extracting our software tar ball user can do the typical steps:
$ gunzip < mycode.tar.gz | tar xvf -
$ ./configure
$ make
$ make install
|
3
|
Hi all, How can we create a software package. So that after extracting our software tar ball user can do the typical steps:
|
||
|
|
|
|
An alternative to the hard to understand GNU/Autools is CMake. http://www.cmake.org/cmake/help/examples.html e.g. KDE is using it. |
|||
|
|
|
|
Look into the GNU autoconf/automake toolchain. Here's a free tutorial/book. |
||
|
|
|
|
In the old days, this process was done by hand. Each |
||
|
|
|
|
Use autotools to create the configure script (which will generate the Makefile necessary for the last two steps), then make a tarball with all your code and stuff in it. |
||
|
|
|
|
|
||||
|