blob: c2c29e9a196d47f71677a48db2d9ecaf1cb775eb (
about) (
plain)
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
|
\input texinfo
@c -*-texinfo-*-
@c %**start of header
@setfilename weipub.info
@documentencoding UTF-8
@settitle Weipub
@c %**end of header
@include version.texi
@copying
Copyright @copyright{} 2022 Ricardo Wurmus
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with no
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
copy of the license is included in the section entitled ``GNU Free
Documentation License''.
@end copying
@dircategory Networking
@direntry
* Weipub: (weipub). Teeny tiny ActivityPub thing.
@end direntry
@titlepage
@title Weipub
@subtitle Teeny tiny ActivityPub thing.
@author Ricardo Wurmus
@page
@vskip 0pt plus 1filll
Edition @value{EDITION} @*
@value{UPDATED} @*
@insertcopying
@end titlepage
@contents
@c *********************************************************************
@node Top
@top Weiput
This document describes the Weipub, a teeny tiny ActivityPub thing, version @value{VERSION}.
@menu
* Introduction:: What is this all about?
* Installation:: How to install weipub.
* GNU Free Documentation License:: The license of this manual.
* Concept Index:: Concepts.
* Programming Index:: Data types, functions, and variables.
@end menu
@c *********************************************************************
@node Introduction
@chapter Introduction
TODO
@c *********************************************************************
@node Installation
@chapter Installation
Weipub uses the GNU build system. To install it from a release
tarball just unpack it and run the usual commands:
@cindex installing from source
@cindex building from source
@example
./configure
make
make install
@end example
If you want to build the sources from the source repository you need to
bootstrap the build system first. Run @code{autoreconf -vif} first and
then perform the above steps.
@c *********************************************************************
@node GNU Free Documentation License
@appendix GNU Free Documentation License
@include fdl-1.3.texi
@page
@c *********************************************************************
@node Concept Index
@unnumbered Concept Index
@printindex cp
@node Programming Index
@unnumbered Programming Index
@syncodeindex tp fn
@syncodeindex vr fn
@printindex fn
@bye
|