blob: cc8f49b4acd43ee0128b5b761796c1d681ee8a2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
ikiwiki:
git clone -b album 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
|