blob: 9b561abe017298d2199aa3d9115b5aaf28497e89 (
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
# Maintainer: David Runge <dvzrv@archlinux.org>
# Contributor: Ruben Kelevra <ruben@freifunk-nrw.de>
# Contributor: Timothée Ravier <tim@siosm.fr>
# Contributor: Jonas Heinrich <onny@project-insanity.org>
pkgname=etherpad-lite
pkgver=1.8.10
pkgrel=1
epoch=1
pkgdesc="Lightweight fork of etherpad based on javascript"
arch=(any)
url="https://etherpad.org"
license=('Apache')
depends=('coffeescript' 'nodejs')
makedepends=('npm')
optdepends=('sqlite: to use sqlite as databse'
'mariadb: to use mariadb as database'
'postgresql: to use postgresql as database'
'abiword: advanced import/export of pads'
'libreoffice: advanced import/export of pads'
'tidy: improve quality of exported pads')
conflicts=('etherpad-lite-git')
backup=("etc/${pkgname}/settings.json"
"etc/${pkgname}/credentials.json"
"etc/${pkgname}/APIKEY.txt"
"etc/${pkgname}/SESSIONKEY.txt")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ether/${pkgname}/archive/${pkgver}.tar.gz"
"${pkgname}-sysusers.conf"
"${pkgname}-tmpfiles.conf"
"${pkgname}.service")
sha512sums=('baf18c577c8a58186df5ef6acd6ba608427b1e3d39cbfad34cbdcbdff3434c305713a9a940a720fc787a0c8320d0d77f260eff4f46237ec176a0d917159d1ed3'
'8c9093cc82acb814023b60eecffae7cb697abfa6193a68ca068f010baf3bf1e5f1678bdb862f4af370badbd71deb6a8499f61c8b6115d280477db1b3fd895dfd'
'f1be6d7094ea0dd267fba21c7c64017de6a63974e193720100d49eba07170a078d43f0b76c96e6453b8e9e94cdc24b36fb7ab14218598d65d1455418daf9e447'
'db3f27c2bed7cc84910154da8851daf32ea248aeaca5026c9c4cf138841b921498a0c39d4f9b635d6686d13ac498399e4657563867d87d406ff6b8b6d9dd0d28')
b2sums=('db6453e48246c73d42126afeb389d25cd8cbdc056bafcec24a7ddee1f93fb4ca816c029cd4734050113eea2844be8da7355f65ce2319123b9f063d24f422f331'
'cb519b7d749982d899037445be36dc54754c523ee7aaa3f7d005b4cea4dd74c1596535b17bfdd6910923e4f723ee02c625d579966a601b84ca1b1eeb82fe932e'
'88f0f7b9bbc64b853e3169cc9627b64c4b5aaef7238553ed110f82ebd40e1f8b0078d17a69adee6a37f6d59f6eb0871fc209a1fb6e4b71b7ac5239071db2eec7'
'12c3be8037959b0613adc82a5632845a79c966a6c9ccbadffd103c30c5cb951c0d31e2cc8f2cfce5ebcaba847baf168584cd6dac4a76c0d14b0d534f1c82219b')
prepare() {
cd "${pkgname}-${pkgver}"
# create needed initializing file
touch src/.ep_initialized
# write dirty.db to StateDirectory by default
sed -i 's/var\/dirty.db/\/var\/lib\/etherpad-lite\/dirty.db/g' \
settings.json.template
# create empty APIKEY.txt, SESSIONKEY.txt
touch {APIKEY,SESSIONKEY}.txt
# create a valid (but empty) credentials.json file
echo "{}" > credentials.json
# create needed symlink because setup is weird
mkdir -v node_modules && cd node_modules
ln -vs ../src "ep_${pkgname}"
}
build() {
cd "${pkgname}-${pkgver}"
(
cd src
# required node modules
echo "Installing with npm"
npm install --cache "${srcdir}/npm-cache"
npm audit || echo "npm audit output might return non-zero"
)
find . -type f \
\( \
-iname '*.1' -o \
-iname '*.5' -o \
-iname '*.7' -o \
-iname '*info' -o \
-iname '*.py' -o \
-iname '*samples' \
\) \
-delete
find . -type d \
\( \
-iwholename '*/man1' -o \
-iwholename '*/man5' -o \
-iwholename '*/man7' -o \
-iwholename '*/man' \
\) \
-delete
}
package() {
cd "${pkgname}-${pkgver}"
# removing unneeded files and directories
find src -type f \
\( \
-iname '*Dockerfile*' -o \
-iname '*Makefile*' -o \
-iname '*appveyor.yml' -o \
-iname '*.babelrc' -o \
-iname '*.bak' -o \
-iname '*bower.json' -o \
-iname '*.c' -o \
-iname '*.cc' -o \
-iname '*.cpp' -o \
-iname '*.md' -o \
-iname '*.markdown' -o \
-iname '*.rst' -o \
-iname '*.nycrc' -o \
-iname '*.npmignore' -o \
-iname '*.editorconfig' -o \
-iname '*.el' -o \
-iname '*.eslintignore' -o \
-iname '*.eslintrc*' -o \
-iname '*.fimbullinter.yaml' -o \
-iname '*.gitattributes' -o \
-iname '*.gitmodules' -o \
-iname '*.h' -o \
-iname '*.jshintrc' -o \
-iname '*.jscs.json' -o \
-iname '*.log' -o \
-iname '*logo.svg' -o \
-iname '*.nvmrc' -o \
-iname '*.o' -o \
-iname '*package-lock.json' -o \
-iname '*.travis.yml' -o \
-iname '*.prettierrc' -o \
-iname '*.sh' -o \
-iname '*.tags*' -o \
-iname '*.tm_properties' -o \
-iname '*.wotanrc.yaml' -o \
-iname '*tsconfig.json' -o \
-iname '*yarn.lock' \
\) \
-delete
find src -type d \
\( \
-iwholename '*.github' -o \
-iwholename '*.tscache' -o \
-iwholename '*/man' -o \
-iwholename '*/test' -o \
-iwholename '*/scripts' -o \
-iwholename '*/git-hooks' \
\) \
-exec rm -rvf {} +
find src -empty -type d -delete
# install initialization file
install -vDm 644 "src/.ep_initialized" \
-t "${pkgdir}/usr/share/${pkgname}/src/"
# node modules
cp -av node_modules "${pkgdir}/usr/share/${pkgname}/"
# protect configuration directory with restrictive permission
install -vdm 755 "${pkgdir}/etc/${pkgname}"
install -vdm 755 "${pkgdir}/etc/${pkgname}/no-skin"
# custom js and css templates
install -vDm 644 "src/static/skins/no-skin/"*.{css,js} \
-t "${pkgdir}/etc/${pkgname}/no-skin"
rm -rv src/static/skins/no-skin/
# move sources
cp -av src/* "${pkgdir}/usr/share/${pkgname}/src/"
# symlink directory for custom css and js
ln -vs "/etc/${pkgname}/no-skin/" \
"${pkgdir}/usr/share/${pkgname}/src/static/skins/"
# configuration
install -vDm 640 settings.json.template \
"${pkgdir}/etc/${pkgname}/settings.json"
install -vDm 640 credentials.json \
-t "${pkgdir}/etc/${pkgname}"
install -vDm 640 {APIKEY,SESSIONKEY}.txt \
-t "${pkgdir}/etc/${pkgname}"
# symlink configuration files
ln -vs "/etc/${pkgname}/credentials.json" \
"${pkgdir}/usr/share/${pkgname}/credentials.json"
ln -vs "/etc/${pkgname}/SESSIONKEY.txt" \
"${pkgdir}/usr/share/${pkgname}/SESSIONKEY.txt"
ln -vs "/etc/${pkgname}/APIKEY.txt" \
"${pkgdir}/usr/share/${pkgname}/APIKEY.txt"
# systemd service
install -vDm 644 "${srcdir}/${pkgname}.service" \
"${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
# systemd-sysusers
install -vDm 644 "${srcdir}/${pkgname}-sysusers.conf" \
"${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
# systemd-tmpfiles
install -vDm 644 "${srcdir}/${pkgname}-tmpfiles.conf" \
"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
# docs
install -vDm 644 {CHANGELOG,CONTRIBUTING,README}.md \
-t "${pkgdir}/usr/share/doc/${pkgname}/"
}
|