blob: fc12ef91247c989b829a407d19f7041924d8f72f (
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Maintainer (Arch): Kurt Marasco <celilo _at_ lavabit _dot_ com>
# Contributor (Arch): Pascal Ernster <aur at hardfalcon dot net>
pkgname=hiawatha
pkgver=9.2
pkgrel=1
pkgdesc="Secure and advanced webserver"
url="https://www.hiawatha-webserver.org/"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
depends=('libxslt' 'polarssl')
optdepends=('php-fpm: Provides modern PHP fast cgi support (Recommended) ')
makedepends=('cmake')
install=$pkgname.install
backup=(
usr/lib/systemd/system/hiawatha.service
etc/hiawatha/hiawatha.conf
etc/hiawatha/hiawatha.conf.sample
etc/hiawatha/cgi-wrapper.conf
etc/hiawatha/mimetype.conf
srv/http/hiawatha/cdcatalog.xml
srv/http/hiawatha/cdcatalog.xslt
)
source=(
"http://hiawatha-webserver.org/files/${pkgname}-${pkgver}.tar.gz"
'hiawatha.conf.sample'
'cdcatalog.xml'
'cdcatalog.xslt'
'hiawatha.service'
'hiawatha.install'
)
sha256sums=(
'5d9cdec51c618bb3efab747030e593d9bd49dfaf3236254c8e0cb60715716dbf'
'4671d2586cbe3cd6497b16ff422c6143cdab40641ef3c9c4988c478351a8f5e7'
'7757d6e5fe363b917a2823ba8b5194509ed6914e7c088d04ae72f9bd73efcb58'
'f28aa336da6f0fb124a1092039e695d233569cb32632223f786603ffb6ed5471'
'fb789b12bb6246237b15a9244f58317abdd53e5ca4eb55880e40a498b2237155'
'3b60a884102a6212a4963c041dd2a5a32fb18833f758e9be5d021bbc630ed627'
)
build() {
cd "$srcdir/${pkgname}-${pkgver}"
cmake . -DCMAKE_INSTALL_PREFIX="/" \
-DCMAKE_INSTALL_BINDIR="/usr/bin" \
-DCMAKE_INSTALL_SBINDIR="/usr/bin" \
-DCMAKE_INSTALL_SYSCONFDIR="/etc/hiawatha" \
-DCMAKE_INSTALL_LIBDIR="/usr/lib" \
-DCMAKE_INSTALL_MANDIR="/usr/share/man" \
-DCONFIG_DIR="/etc/hiawatha" \
-DLOG_DIR="/var/log/hiawatha" \
-DPID_DIR="/run" \
-DENABLE_SSL=ON \
-DUSE_SYSTEM_POLARSSL=on \
-DWEBROOT_DIR="/srv/http" \
-DWORK_DIR="/var/lib/hiawatha"
make
# The default capabilities are installed by this PKGBUILD
# The following build options are available to customize your installation:
# modify the above cmake command to customize
#option description required libraries when feature enabled
# cmake options
# -DENABLE_CACHE=ON|off Enable internal cache support.
# -DENABLE_DEBUG=on|OFF Enable debug information (for development only).
# -DENABLE_IPV6=ON|off Enable IPv6 support.
# -DENABLE_MONITOR=on|OFF Enable support for the Hiawatha Monitor.
# -DENABLE_RPROXY=ON|off Enable reverse proxy support.
# -DENABLE_SSL=ON|off Enable SSL (PolarSSL) support.
# -DENABLE_TOMAHAWK=on|OFF Enable Tomahawk, Hiawatha command shell.
# -DENABLE_TOOLKIT=ON|off Enable the URL Toolkit.
# -DENABLE_XSLT=ON|off Enable XSLT support. libxml2, libxslt1
# -DUSE_SYSTEM_POLARSSL=on|OFF Compile Hiawatha against the system's PolarSSL library (>=1.2.0).
# The following path settings are available for CMake.
# -DCMAKE_INSTALL_PREFIX=<path> The prefix for all other CMAKE_INSTALL directories.
# -DCMAKE_INSTALL_BINDIR=<path> Location of the ssi-cgi binary.
# -DCMAKE_INSTALL_SBINDIR=<path> Location of the other Hiawatha binaries.
# -DCMAKE_INSTALL_SYSCONFDIR=<path> The configuration files will be installed in /hiawatha.
# -DCMAKE_INSTALL_LIBDIR=<path> The PolarSSL shared library will be installed in /hiawatha.
# -DCMAKE_INSTALL_MANDIR=<path> Manual pages will be installed in /man1.
# -DCONFIG_DIR=<path> Location of the Hiawatha configuration files.
# -DLOG_DIR=<path> Log directory used in the default hiawatha.conf.
# -DPID_DIR=<path> Location of the Hiawatha and php-fcgi PID files.
# -DWEBROOT_DIR=<path> Webroot directory used in the default hiawatha.conf.
# -DWORK_DIR=<path> Path of directory where Hiawatha can write temporary files.
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
# Fix hiawatha.conf (formerly httpd.conf)
sed -e 's|#ServerId = www-data|ServerId = http|' \
-e 's|/var/www/|/srv/http/|g' \
-e 's|//|/|g' \
-e 's|#CGIextension = cgi|&\n#TriggerOnCGIstatus = yes|g' \
-e 's|ConnectTo = 127.0.0.1:2005|ConnectTo = 127.0.0.1:9000|g' \
-e 's|# Extension = php|&\n# SessionTimeout = 30|g' \
-e 's|#ErrorHandler = 404:/error.cgi|&\n#UseGZfile = yes|g' \
-i "$pkgdir/etc/hiawatha/hiawatha.conf"
# Fix hiawatha logrotate file (/etc/logrotate.d/hiawatha)
sed -e 's|www-data|http|g' -i "$srcdir/$pkgname-$pkgver/logrotate.d/hiawatha"
mkdir "$pkgdir/etc/logrotate.d"
install -m644 "$srcdir/$pkgname-$pkgver/logrotate.d/hiawatha" "$pkgdir/etc/logrotate.d/hiawatha"
# Add startup scripts
install -D -m755 "$srcdir/hiawatha.service" "$pkgdir/usr/lib/systemd/system/hiawatha.service"
# Install sample configuration implementing a virtual server for phpmyadmin, php-fpm, and a default website on localhost
install -m644 "$srcdir/hiawatha.conf.sample" "$pkgdir/etc/hiawatha/"
# Install sample XSLT transformation on default website on localhost
install -m644 "$srcdir/cdcatalog.xml" "$pkgdir/srv/http"
install -m644 "$srcdir/cdcatalog.xslt" "$pkgdir/srv/http"
}
|