blob: aa74c33ffbad993b3ce370a98ad6cddd01280499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all: img
ikiwiki:
git clone -b git-annex git://git.cbaines.net/ikiwiki
ikiwiki-dest: ikiwiki
cd ikiwiki && perl Makefile.PL PREFIX=../ikiwiki-dest && make && make install
img: ikiwiki-dest
export PERL5LIB=`pwd`/ikiwiki && PATH=ikiwiki-dest/bin:$(PATH); ikiwiki --setup img.setup
clean:
rm -rf ikiwiki-dest
rm -rf img
|