blob: 127f2799da12c70029275721149b15d3753f0d94 (
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
|
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
_php=php7
pkgname=roundcubemail
pkgver=1.3.6
pkgrel=0
pkgdesc="A PHP web-based mail client"
url="http://www.roundcube.net"
arch="noarch"
license="GPL-3.0-or-later"
install="$pkgname.post-upgrade"
depends="${_php} ${_php}-imap ${_php}-xml ${_php}-json ${_php}-dom
${_php}-exif ${_php}-pear-net_idna2 ${_php}-pear-mail_mime
${_php}-pear-net_smtp ${_php}-pear-auth_sasl ${_php}-openssl
${_php}-session ${_php}-mbstring ${_php}-iconv ${_php}-intl
"
options="!check"
subpackages="$pkgname-installer $pkgname-doc"
source="https://github.com/roundcube/$pkgname/releases/download/$pkgver/${pkgname}-$pkgver.tar.gz
fix-dirs.patch"
builddir="$srcdir"/roundcubemail-$pkgver
# secfixes:
# 1.3.6-r0:
# - CVE-2018-9846
# 1.2.7-r0:
# - CVE-2017-16651
# 1.2.5-r0:
# - CVE-2017-8114
prepare() {
cd "$builddir"
default_prepare
# fix permissions
find . -type f -print | xargs chmod a-x
# remove .htaccess
find . -name \.htaccess -print | xargs rm -f
# fixup paths to use the right paths
sed -i -e 's|temp/|/tmp/|' \
-e 's|config/|/etc/roundcube/|' \
-e 's|logs/|/var/log/roundcube/|' \
config/defaults.inc.php
# cleanup
sed -i 's/\r//' SQL/mssql.initial.sql
rm -rf logs temp
}
build() {
return 0
}
package() {
_instdir="$pkgdir"/usr/share/webapps/roundcube
mkdir -p "${_instdir}"
cd "${_instdir}"
cp -rp "$builddir"/* .
# install config in /etc/roundcube so config files are not overwritten
# on upgrades
mkdir -p "$pkgdir"/etc/
mv config "$pkgdir"/etc/roundcube
install -d "$pkgdir"/var/log/roundcube
mkdir -p "$pkgdir"/usr/share/doc/roundcube
mkdir -p "$pkgdir"/usr/share/licenses/roundcube
for file in CHANGELOG INSTALL README.md UPGRADING
do
mv "$pkgdir"/usr/share/webapps/roundcube/$file \
"$pkgdir"/usr/share/doc/roundcube
done
mv "$pkgdir"/usr/share/webapps/roundcube/LICENSE \
"$pkgdir"/usr/share/licenses/roundcube
}
installer() {
pkgdesc="Roundcubemail installer script"
mkdir -p "$subpkgdir"/usr/share/webapps/roundcube
mv "$pkgdir"/usr/share/webapps/roundcube/installer \
"$subpkgdir"/usr/share/webapps/roundcube
}
sha512sums="c5e1e80034392ea4fcf780750ad2b7db43422a746462015865cbdb027e9e47b2bae7b191da19b65a7b9303c195bdfd0aa5b5a0382c09dd97d117671271cdc122 roundcubemail-1.3.6.tar.gz
a8dc9e9493f9b24441378f6a526eb26e4dd4b0ef0cafaf25dd55c334b92df88dcb06008f46404a80eae0520ac04431c5b2237fd662c85c31fc6ee2b0d8fa9435 fix-dirs.patch"
|