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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
ACLOCAL_AMFLAGS = -I m4 -I m4/shamrock
EXTRA_DIST = COPYING COPYRIGHT AUTHORS
SUBDIRS = \
po \
BundledLibraries \
Alias \
AptURL \
Archive \
Bibtex \
Cl.ickable \
ClawsMail \
Confluence \
DiskMounter \
EOG-Slideshow \
Epiphany \
Evolution \
File \
Firefox \
Flickr \
GNOME-Dictionary \
GNOME-Screenshot \
GNOME-Session \
GNOME-Terminal \
GoogleCalculator \
GoogleCalendar \
GoogleContacts \
GoogleDocs \
GoogleMaps \
GoogleSearch \
ImageShack \
JIRA \
Launchpad \
LocateFiles \
ManLookUp \
Microblogging \
MPD \
NX \
OpenSearch \
Opera \
Pastebin \
Pidgin \
PingFM \
Putty \
Quote \
RememberTheMilk \
Rhythmbox \
Riptide \
Shelf \
Skype \
SSH \
StockQuote \
SystemServices \
Tasque \
TerminalServerClient \
Text \
TinyUrl \
Translate \
Tomboy \
Vinagre \
VirtualBox \
VolumeControl \
WindowManager \
Woof \
Wordnet \
Xmms2 \
Zim
# 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))
BUNDLED_ASSEMBLIES = $(wildcard BundledLibraries/*.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
|