]> git.ipfire.org Git - collecty.git/blame - Makefile
Fix installation.
[collecty.git] / Makefile
CommitLineData
cd57e2f3
MT
1###############################################################################
2# #
3# collecty - A system statistics collection daemon for IPFire #
4# Copyright (C) 2012 IPFire development team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
a49a4b46
MT
20
21NAME = collecty
03578120 22VERSION = 0.0.1
a49a4b46
MT
23
24DESTDIR =
b0162248
MT
25PYTHON_VER := $(shell python -c "import platform; print '.'.join(platform.python_version_tuple()[:2])")
26PYTHON_DIR = $(DESTDIR)/usr/lib/python$(PYTHON_VER)/site-packages/
a49a4b46
MT
27
28all:
29
03578120
MT
30dist:
31 git archive --format=tar --prefix=$(NAME)-$(VERSION)/ HEAD | gzip -9 \
32 > $(NAME)-$(VERSION).tar.gz
33
a49a4b46
MT
34install:
35 -mkdir -pv $(PYTHON_DIR)
36 cp -rvf collecty $(PYTHON_DIR)
05a55b56 37 install -v -m 755 collectyd $(DESTDIR)/usr/sbin
a49a4b46
MT
38
39 -mkdir -pv $(DESTDIR)/var/rrd
40
41 # Install configuration
42 -mkdir -pv $(DESTDIR)/etc/$(NAME)/
43 cp -vf example.conf $(DESTDIR)/etc/$(NAME)/$(NAME).conf