X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/0d01b4f4260a820995065ffd80a71c74ad9ae99b..01efc737196b71eac7afd4faf4f772daf1b614ad:/Makefile.PL diff --git a/Makefile.PL b/Makefile.PL index 73c4950cb..0e306ac08 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -26,9 +26,11 @@ PROBABLE_INST_LIB=$(shell \\ tflag=$(shell if [ "$$NOTAINT" != 0 ]; then printf -- "-T"; fi) extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-MDevel::Profiler"; fi) -extra_build: +ikiwiki.out: ikiwiki.in ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out chmod +x ikiwiki.out + +extra_build: ikiwiki.out LANG=C perl -I. $(extramodules) $(tflag) ikiwiki.out doc html --templatedir=templates \ --underlaydir=basewiki --nousedirs\ --wikiname="ikiwiki" --verbose \ @@ -47,12 +49,17 @@ extra_clean: extra_install: install -d $(DESTDIR)$(PREFIX)/share/ikiwiki - for dir in `find -L basewiki templates -type d ! -regex '.*\.svn.*'`; do \ + for dir in `find basewiki templates -follow -type d ! -regex '.*\.svn.*'`; do \ install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \ - for file in `find -L $$dir -maxdepth 1 -type f`; do \ + for file in `find $$dir -follow -maxdepth 1 -type f`; do \ install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \ done; \ done + + install -d $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins + for file in `find plugins -maxdepth 1 -type f`; do \ + install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \ + done; \ install -d $(DESTDIR)$(PREFIX)/share/man/man1 install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1