User:Timothee Flutre/Notebook/Postdoc/2012/11/27: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(Autocreate 2012/11/27 Entry for User:Timothee_Flutre/Notebook/Postdoc)
 
(→‎Entry title: first version)
Line 6: Line 6:
| colspan="2"|
| colspan="2"|
<!-- ##### DO NOT edit above this line unless you know what you are doing. ##### -->
<!-- ##### DO NOT edit above this line unless you know what you are doing. ##### -->
==Entry title==
==How to make a GNU package?==
* Insert content here...


* find a name for the package
* make the structure of the project directory ([http://www.sourceware.org/autobook/autobook/autobook_46.html ref])
touch README INSTALL
mkdir src doc test lib config
* populate the <nowiki>src/</nowiki> directory with your code, e.g. one <nowiki>.cpp</nowiki> file
* use Autotools ([http://www.lrde.epita.fr/~adl/autotools.html ref])


<!-- ##### DO NOT edit below this line unless you know what you are doing. ##### -->
<!-- ##### DO NOT edit below this line unless you know what you are doing. ##### -->

Revision as of 13:42, 27 November 2012

Project name <html><img src="/images/9/94/Report.png" border="0" /></html> Main project page
<html><img src="/images/c/c3/Resultset_previous.png" border="0" /></html>Previous entry<html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</html>

How to make a GNU package?

  • find a name for the package
  • make the structure of the project directory (ref)
touch README INSTALL
mkdir src doc test lib config
  • populate the src/ directory with your code, e.g. one .cpp file
  • use Autotools (ref)