40fc6e2e47
Get rid of the service for now, it's not necessary until we allow activities to extend the mime type -> generic type mapping (post 1.0)
35 lines
951 B
Makefile
35 lines
951 B
Makefile
servicedir = $(datadir)/dbus-1/services
|
|
|
|
service_in_files = \
|
|
org.laptop.ActivityRegistry.service.in \
|
|
org.laptop.Clipboard.service.in
|
|
|
|
service_DATA = \
|
|
org.laptop.ActivityRegistry.service \
|
|
org.laptop.Clipboard.service
|
|
|
|
org.laptop.ActivityRegistry.service: org.laptop.ActivityRegistry.service.in Makefile
|
|
@sed -e "s|\@bindir\@|$(bindir)|" $< > $@
|
|
|
|
org.laptop.Clipboard.service: org.laptop.Clipboard.service.in Makefile
|
|
@sed -e "s|\@bindir\@|$(bindir)|" $< > $@
|
|
|
|
org.laptop.ObjectTypeRegistry.service: org.laptop.ObjectTypeRegistry.service.in Makefile
|
|
@sed -e "s|\@bindir\@|$(bindir)|" $< > $@
|
|
|
|
sugardir = $(pkgdatadir)/services/shell
|
|
|
|
sugar_PYTHON = \
|
|
__init__.py \
|
|
activityregistryservice.py \
|
|
bundleregistry.py \
|
|
clipboardobject.py \
|
|
clipboardservice.py
|
|
|
|
bin_SCRIPTS = sugar-shell-service
|
|
|
|
DISTCLEANFILES = $(service_DATA)
|
|
|
|
EXTRA_DIST = $(service_in_files) $(bin_SCRIPTS)
|
|
|