summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8948fda95a13c3a5d91fea43d71f7722f987a492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
XI_BINARY=bin/xi
SOURCE=src

xi: src/xi.py
	mkdir -p bin
	cd src && zip -r xi.zip *
	echo '#!/usr/bin/env python' | cat - src/xi.zip > ${XI_BINARY}
	rm src/xi.zip
	chmod +x ${XI_BINARY}

install: clean xi xipkg.conf default.conf bin/xi
	mkdir -p /etc/xipkg.d/
	cp default.conf /etc/xipkg.d/
	cp xipkg.conf /etc/xipkg.conf
	cp bin/xi /usr/bin/xi

clean:
	rm -rf bin