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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
ACLOCAL_AMFLAGS = -I m4 -I m4/shamrock
EXTRA_DIST = COPYING COPYRIGHT AUTHORS
SUBDIRS = po BundledLibraries \
Archive \
del.icio.us \
DiskMounter \
Epiphany \
Evolution \
File \
Firefox \
Flickr \
GCalendar \
GDocs \
GMailContacts \
GNOME-Dictionary \
GNOME-Screenshot \
GNOME-Session \
GNOME-Terminal \
GoogleCalculator \
GoogleMaps \
GoogleSearch \
ImageShack \
Launchpad \
LocateFiles \
Microblogging \
OpenSearch \
Pastebin \
Pidgin \
Rhythmbox \
Riptide \
RSS \
Shelf \
SSH \
Tasque \
Text \
Tomboy \
Vinagre \
VolumeControl \
WindowManager
if BUILD_AMAROK
SUBDIRS += Amarok
endif
if BUILD_BANSHEE
SUBDIRS += Banshee
endif
# Current dir _must_ be processed last; this ensures our repo is built with all the plugins
SUBDIRS += .
ASSEMBLY_INSTALL_DIR = $(DESTDIR)/@datadir@/gnome-do/plugins
PLUGIN_ASSEMBLIES = $(notdir $(wildcard $(ASSEMBLY_INSTALL_DIR)/*.dll))
install-data-hook:
cd $(ASSEMBLY_INSTALL_DIR) && mdtool setup pack $(PLUGIN_ASSEMBLIES)
mdtool setup rep-build $(DESTDIR)/@datadir@/gnome-do/plugins
uninstall-hook:
rm $(ASSEMBLY_INSTALL_DIR)/*.mpack
rm $(ASSEMBLY_INSTALL_DIR)/*.mrep
|