blob: ad0fd1932470a6dd2fbc00148d91175281a38147 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
ikiwiki:
git clone -b osm-icon-fixes git://git.cbaines.net/ikiwiki
ikiwiki-dest: ikiwiki
cd ikiwiki && perl Makefile.PL PREFIX=../ikiwiki-dest && make && make install
all: ikiwiki-dest
export PERL5LIB=`pwd`/ikiwiki && PATH=ikiwiki-dest/bin:$(PATH); find . -maxdepth 1 -name "*\.setup" -exec ikiwiki --setup {} \;
clean:
rm -rf ikiwiki-dest
rm -rf dest
|