Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
blob: afee7248c968399244af12efec39499f670765c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
servicedir = $(datadir)/dbus-1/services
service_DATA = org.laptop.Sugar.Presence.service

$(service_DATA): Makefile
	( \
	echo '[D-BUS Service]'; \
	echo 'Name = org.laptop.Sugar.Presence'; \
	echo 'Exec = $(bindir)/sugar-presence-service'; \
	) > $@

psdatadir = $(datadir)/sugar-presence-service
psdata_PYTHON = \
	__init__.py \
	activity.py \
	buddy.py \
	buddyiconcache.py \
	linklocal_plugin.py \
        main.py \
	presenceservice.py \
	pstest.py \
	psutils.py \
	server_plugin.py \
	telepathy_plugin.py \
	config.py

bin_SCRIPTS = sugar-presence-service

DISTCLEANFILES = $(service_DATA)

dist_check_SCRIPTS = test_psutils.py

TESTS_ENVIRONMENT = \
		    PYTHONPATH=$(top_srcdir) \
		    $(PYTHON)
TESTS = $(dist_check_SCRIPTS)