File: install-xastir

package info (click to toggle)
xastir 2.1.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,284 kB
  • sloc: ansic: 120,216; perl: 7,810; sh: 5,552; makefile: 387; sql: 102
file content (56 lines) | stat: -rwxr-xr-x 1,513 bytes parent folder | download
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
#!/bin/sh


# Copyright (C) 2000-2019 The Xastir Group


echo
echo
echo
echo Please note that a subdirectory called "Xastir" will be created
echo here and populated with the latest Xastir source code.  If you
echo already have an "Xastir" directory and are running the script
echo from there, you may want to run it from one directory higher up
echo instead.  Just stop this script and run these commands instead:
echo
echo "    cd .."
echo "    ./xastir/install-xastir"
echo
echo Press ENTER to continue downloading the latest Xastir sources:
read


# Fetch the latest Xastir sources
#
git clone http://github.com/Xastir/Xastir


# Run the update script to configure/compile/install it
#
cd Xastir; ./update-xastir


echo
echo
echo
echo If you have previously set up the /etc/sudoers file as described in README.GIT,
echo you should have "xastir" and "callpass" binaries installed in /usr/local/bin.
echo If not, set up the /etc/sudoers file now and run the "update-xastir" command
echo listed below.  To update Xastir to the latest version at any time in the future,
echo change to the "Xastir" directory and type:
echo
echo "    ./update-xastir"
echo
echo Running Xastir:  Execute this command to get your passcode.  You will need the
echo number it computes in order to authenticate with the internet servers.  The
echo number is entered in the "passcode" box when setting up an internet server
echo interface:
echo
echo "    callpass"
echo
echo Start Xastir itself by typing:
echo
echo "    xastir &"
echo