blob: 5bfc273d5e0e93a728075e20f511f0b28d9e67e0 (
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
|
NAME = simplyread
VERSION = 0.3
index.html: doap.ttl README webheader.html
echo making webpage
cat < webheader.html > $@
smu < README >> $@
echo '<h3><a href="$(NAME)-$(VERSION).tar.bz2">Download SimplyRead $(VERSION)</a><br />' >> $@
echo '<a href="$(NAME)-$(VERSION).tar.bz2.sig">GPG signature</a></h3>' >> $@
echo '<h3><a href="$(NAME)-$(VERSION).xpi">SimplyRead $(VERSION) for Firefox</a><br />' >> $@
echo '<a href="$(NAME)-$(VERSION).xpi.sig">GPG signature</a></h3>' >> $@
echo '<h3><a href="$(NAME)-$(VERSION).crx">SimplyRead $(VERSION) for Chromium</a><br />' >> $@
echo '<a href="$(NAME)-$(VERSION).xpi.crx">GPG signature</a></h3>' >> $@
echo '<hr />' >> $@
sh websummary.sh doap.ttl | smu >> $@
echo '</body></html>' >> $@
dist:
mkdir -p $(NAME)-$(VERSION)
cp simplyread.js COPYING INSTALL README $(NAME)-$(VERSION)
tar -c $(NAME)-$(VERSION) | bzip2 -c > $(NAME)-$(VERSION).tar.bz2
gpg -b < $(NAME)-$(VERSION).tar.bz2 > $(NAME)-$(VERSION).tar.bz2.sig
rm -rf $(NAME)-$(VERSION)
echo $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION).tar.bz2.sig
xpi: simplyread.js gecko/install.rdf gecko/chrome.manifest gecko/chrome/content/simplyread.xul gecko/chrome/content/icon.svg
rm -rf $(NAME)-$(VERSION).xpi gecko-build
mkdir -p gecko-build/chrome/content
cp COPYING gecko/chrome.manifest gecko-build/
cp gecko/chrome/content/simplyread.xul gecko-build/chrome/content/
cp simplyread.js gecko-build/chrome/content/simplyread.js
rsvg gecko/chrome/content/icon.svg gecko-build/chrome/content/icon.png
sed "s/VERSION/$(VERSION)/g" < gecko/install.rdf > gecko-build/install.rdf
cd gecko-build; zip -r ../$(NAME)-$(VERSION).xpi . 1>/dev/null
gpg -b < $(NAME)-$(VERSION).xpi > $(NAME)-$(VERSION).xpi.sig
rm -rf gecko-build
echo $(NAME)-$(VERSION).xpi $(NAME)-$(VERSION).xpi.sig
crx: simplyread.js chromium/icon.svg chromium/manifest.json chromium/background.html
rm -rf chromium-build
mkdir chromium-build
cp COPYING simplyread.js chromium/background.html chromium-build/
rsvg chromium/icon.svg chromium-build/icon.png
sed "s/VERSION/$(VERSION)/g" < chromium/manifest.json > chromium-build/manifest.json
sh chromium/makecrx.sh chromium-build chromium/private.pem > $(NAME)-$(VERSION).crx
rm -r chromium-build
gpg -b < $(NAME)-$(VERSION).crx > $(NAME)-$(VERSION).crx.sig
echo $(NAME)-$(VERSION).crx $(NAME)-$(VERSION).crx.sig
test:
for i in tests/html/*.html; do \
sh tests/runtest.sh $$i $$i.simple 1>$$i.diff 2>/dev/null; \
test $$? -eq 0 && echo $$i passed || echo "$$i failed (see $$i.diff)"; \
test ! -s $$i.diff && rm $$i.diff; \
done
.PHONY: dist xpi crx test
.SUFFIXES: ttl html png svg
.SILENT:
|