blob: 0ea96ec65c28b2164ffec4979d68fbb17b50c074 (
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
|
pre_install() {
/bin/cat <<THEENDPOSTINSTALL
NOTE
----
If you are new to Hiawatha, please refer to http://www.hiawatha-webserver.org/howto
!!!!! This PKGBUILD compiles against the system's PolarSSL library. You will need to install PolarSSL from the AUR.!!!!
THEENDPOSTINSTALL
}
pre_upgrade() {
/bin/cat <<THEENDPOSTINSTALL
NOTE
----
If you are new to Hiawatha, please refer to http://www.hiawatha-webserver.org/howto
!!!!! This PKGBUILD compiles against the system's PolarSSL library. You will need to install PolarSSL from the AUR.!!!!
THEENDPOSTINSTALL
}
post_install() {
/bin/cat <<THEENDPOSTINSTALL
NOTE
----
If you are new to Hiawatha, please refer to http://www.hiawatha-webserver.org/howto
PHP-FPM is the prefered fastcgi server. To install.
pacman -Sy php-fpm
systemctl enable php-fpm
The file hiawatha.conf.sample demonstrates syntax appropriate for use with the php-fpm fast cgi daemon.
THEENDPOSTINSTALL
}
|