]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - Makefile.PL
wip bootstrap theme
[git.ikiwiki.info.git] / Makefile.PL
index bee9dfa11817d52aba1985fd7022d2a80d33f4b7..f9c0cc96a3f7d8b7308e0a4af8deb40b7eae0132 100755 (executable)
@@ -112,11 +112,14 @@ underlay_install:
 
        # Themes have their base.css (if present) and then
        # style.css appended to the normal one.
+       # Or, fullstyle.css in a theme replaces the normal style.css.
        for theme in themes/*; do \
                install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme; \
                for file in $$theme/*; do \
                        if echo "$$file" | grep -q style.css; then \
                                (cat doc/style.css; cat $$theme/base.css 2>/dev/null; cat $$file) > $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme/style.css; \
+                       elif echo "$$file" | grep -q fullstyle.css; then \
+                               cp $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme/style.css; \
                        elif echo "$$file" | grep -q base.css; then \
                                :; \
                        elif [ -f "$$file" ]; then \