1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
<!-- Please adjust the date whenever revising the manpage. -->
<!ENTITY date "<date>18 April,2012</date>">
<!-- SECTION should be 1-8, maybe w/ subsection other parameters are
allowed: see man(7), man(1). -->
<!ENTITY package "appcompile">
<!ENTITY gnu "<acronym>GNU</acronym>">
<!ENTITY gpl "&gnu; <acronym>GPL</acronym>">
]>
<refentry>
<refentryinfo>
<title>Listaller Project</title>
<copyright>
<year>2009-2012</year>
<holder>Matthias Klumpp</holder>
</copyright>
<productname>Listaller Project</productname>
&date;
</refentryinfo>
<refmeta>
<refentrytitle>appcompile</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname>&package;</refname>
<refpurpose>Compile software automatically</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>&package;</command>
<group choice="opt">
<option>OPTION ...</option>
</group>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
<para>
This manual page documents briefly the <command>&package;</command> command.
</para>
<para>
<command>&package;</command> automatically compiles applications from source code. It will detect the build system
(cmake, automake, ...) and then perform the necessary steps to generate the binary. &package; can be used together
with libuild, the Listaller build tool, to compile applications easily.
</para>
</refsect1>
<refsect1>
<title>Options</title>
<variablelist>
<varlistentry>
<term><option>-s</option></term>
<term><option>--sourcedir=<replaceable>DIRECTORY</replaceable></option></term>
<listitem>
<para>Path to source of the application which should be compiled.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>-o</option></term>
<term><option>--target_dir=<replaceable>DIRECTORY</replaceable></option></term>
<listitem>
<para>Path where the resulting binaries should be installed to.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--strip</option></term>
<listitem>
<para>Strip debug information from resulting binaries.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--version</option></term>
<listitem>
<para>Display version number of &package;</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--verbose</option></term>
<listitem>
<para>Turn on verbose mode (this can be used for debugging).</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<title>See Also</title>
<para>lipkgen (1), depscan (1).</para>
<para>
Additional documentation can be found on http://listaller.tenstral.net.
</para>
</refsect1>
<refsect1>
<title>AUTHOR</title>
<para>This manual page was written by Matthias Klumpp <email>matthias@tenstral.net</email>.
</para>
</refsect1>
</refentry>
|