summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac1
-rw-r--r--man/Makefile.am2
-rw-r--r--man/ideviceinstaller.1101
4 files changed, 105 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 4c3e7c3..7c28996 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,4 @@
1AUTOMAKE_OPTIONS = foreign 1AUTOMAKE_OPTIONS = foreign
2ACLOCAL_AMFLAGS = -I m4 2ACLOCAL_AMFLAGS = -I m4
3SUBDIRS = src 3SUBDIRS = src man
4 4
diff --git a/configure.ac b/configure.ac
index af7d0ac..ab3945b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -48,5 +48,6 @@ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
48AC_OUTPUT([ 48AC_OUTPUT([
49Makefile 49Makefile
50src/Makefile 50src/Makefile
51man/Makefile
51]) 52])
52 53
diff --git a/man/Makefile.am b/man/Makefile.am
new file mode 100644
index 0000000..4a1d31f
--- /dev/null
+++ b/man/Makefile.am
@@ -0,0 +1,2 @@
1man_MANS = ideviceinstaller.1
2EXTRA_DIST = $(man_MANS)
diff --git a/man/ideviceinstaller.1 b/man/ideviceinstaller.1
new file mode 100644
index 0000000..d601d71
--- /dev/null
+++ b/man/ideviceinstaller.1
@@ -0,0 +1,101 @@
1.TH "ideviceinstaller" 1
2.SH NAME
3ideviceinstaller \- Manage iPhone/iPod Touch apps
4.SH SYNOPSIS
5.B ideviceinstaller
6[OPTIONS]
7
8.SH DESCRIPTION
9
10Allows to install, upgrade, uninstall, archive, restore and
11enumerate installed or archived apps on iPhone/iPod Touch devices.
12
13.SH OPTIONS
14
15.SS General options:
16.TP
17.B \-D, \-\-debug
18enable communication debugging.
19.TP
20.B \-u, \-\-uuid UUID
21target specific device by its 40-digit device UUID.
22.TP
23.B \-h, \-\-help
24prints usage information
25
26.SS Commands:
27.TP
28.B \-l, \-\-list-apps
29list apps installed on the device.
30
31.RS
32.B Additional options:
33.TP
34-o list_user
35list user apps only (apps installed by the user)
36.B This is the default.
37.TP
38-o list_system
39list system apps only (apps available from the system firmware)
40.TP
41-o list_all
42list all types of apps
43.TP
44-o xml
45print output in xml format (PList)
46.RE
47
48.TP
49.B \-i, \-\-install ARCHIVE
50install app from a package file specified by ARCHIVE.
51
52.TP
53.B \-i, \-\-uninstall APPID
54uninstall app specified by APPID.
55
56.TP
57.B \-g, \-\-upgrade APPID
58upgrade app specified by APPID.
59
60.TP
61.B \-r, \-\-restore APPID
62restore archived app specified by APPID.
63
64.TP
65.B \-L, \-\-list-archives
66list archived applications on the device.
67
68.RS
69.B Additional options:
70.TP
71-o xml
72print output in xml format (PList)
73.RE
74
75.TP
76.B \-a, \-\-archive APPID
77archive app specified by APPID.
78
79.RS
80.B Additional options:
81.TP
82-o uninstall
83uninstall the package after making an archive
84.TP
85-o app_only
86archive application data only
87.TP
88-o copy=PATH
89copy the app archive to directory PATH when done
90.TP
91-o remove
92only valid when copy=PATH is used: remove after copy
93.RE
94
95.TP
96.B \-R, \-\-remove-archive APPID
97remove app archive specified by APPID.
98
99.SH AUTHOR
100This manual page was written by Martin Szulecki.
101