diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-25 02:12:43 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-25 02:12:43 +0000 |
commit | f4d99ac1ca03121255e545df89e7d841a02cc0bf (patch) | |
tree | bdabb182ecd4fb16e50d1a987de70440ec466349 /Makefile.PL | |
parent | 347a756e384ec6994d4fe7ffe82e384bb9a63057 (diff) | |
download | ikiwiki-f4d99ac1ca03121255e545df89e7d841a02cc0bf.tar ikiwiki-f4d99ac1ca03121255e545df89e7d841a02cc0bf.tar.gz |
* Use DESTDIR and not PREFIX to specify installation prefix for packaging.
* Support running "perl Makefile.PL PREFIX=foo" to build ikiwiki to run
from a different directory.
Diffstat (limited to 'Makefile.PL')
-rwxr-xr-x | Makefile.PL | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/Makefile.PL b/Makefile.PL index f2f5ba4a1..7123aef89 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,7 +14,7 @@ pure_install:: extra_install VER=$(shell perl -e '$$_=<>;print m/\((.*?)\)/'<debian/changelog) ikiwiki: ikiwiki.pl - perl -pe '$$_="" if /use lib/; $$_="our \$$version=\"$(VER)\";\n" if /VERSION_AUTOREPLACE/' ikiwiki.pl > ikiwiki + ./pm_filter $(PREFIX) $(VER) < ikiwiki.pl > ikiwiki extra_build: ./ikiwiki.pl doc html --templatedir=templates --underlaydir=basewiki \ @@ -33,29 +33,30 @@ extra_clean: rm -f ikiwiki.man ikiwiki-mass-rebuild.man extra_install: - install -d $(PREFIX)/share/ikiwiki/templates - cp templates/* $(PREFIX)/share/ikiwiki/templates + install -d $(DESTDIR)/usr/share/ikiwiki/templates + cp templates/* $(DESTDIR)/usr/share/ikiwiki/templates - install -d $(PREFIX)/share/ikiwiki/basewiki - cp -a basewiki/* $(PREFIX)/share/ikiwiki/basewiki + install -d $(DESTDIR)/usr/share/ikiwiki/basewiki + cp -a basewiki/* $(DESTDIR)/usr/share/ikiwiki/basewiki - install -d $(PREFIX)/share/man/man1 - install ikiwiki.man $(PREFIX)/share/man/man1/ikiwiki.1 + install -d $(DESTDIR)/usr/share/man/man1 + install ikiwiki.man $(DESTDIR)/usr/share/man/man1/ikiwiki.1 - install -d $(PREFIX)/share/man/man8 - install ikiwiki-mass-rebuild.man $(PREFIX)/share/man/man8/ikiwiki-mass-rebuild.8 + install -d $(DESTDIR)/usr/share/man/man8 + install ikiwiki-mass-rebuild.man $(DESTDIR)/usr/share/man/man8/ikiwiki-mass-rebuild.8 - install -d $(PREFIX)/sbin - install ikiwiki-mass-rebuild $(PREFIX)/sbin + install -d $(DESTDIR)/usr/sbin + install ikiwiki-mass-rebuild $(DESTDIR)/usr/sbin - install -d $(PREFIX)/lib/w3m/cgi-bin - install ikiwiki-w3m.cgi $(PREFIX)/lib/w3m/cgi-bin + install -d $(DESTDIR)/usr/lib/w3m/cgi-bin + install ikiwiki-w3m.cgi $(DESTDIR)/usr/lib/w3m/cgi-bin } } WriteMakefile( 'NAME' => 'IkiWiki', - 'PM_FILTER' => 'grep -v "removed by Makefile"', + 'PM_FILTER' => './pm_filter $(PREFIX) $(VER)', 'EXE_FILES' => ['ikiwiki'], + 'MAN1PODS' => {}, 'clean' => {FILES => 'ikiwiki'}, ); |