~ubuntu-branches/ubuntu/raring/banshee/raring

« back to all changes in this revision

Viewing changes to src/Extensions/Banshee.UPnPClient/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2012-02-18 22:17:24 UTC
  • mfrom: (6.3.23 experimental)
  • Revision ID: package-import@ubuntu.com-20120218221724-cnwdvn490wjjue8t
Tags: 2.3.5-1ubuntu1
* Merge from Debian Experimental, remaining changes:
  + Enable and recommend SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ASSEMBLY = Banshee.UPnPClient
 
2
TARGET = library
 
3
LINK = $(REF_EXTENSION_UPNP)
 
4
INSTALL_DIR = $(EXTENSIONS_INSTALL_DIR)
 
5
 
 
6
SOURCES =  \
 
7
        Banshee.UPnPClient/UPnPContainerSource.cs \
 
8
        Banshee.UPnPClient/UPnPMusicSource.cs \
 
9
        Banshee.UPnPClient/UPnPServerSource.cs \
 
10
        Banshee.UPnPClient/UPnPService.cs \
 
11
        Banshee.UPnPClient/UPnPTrackInfo.cs \
 
12
        Banshee.UPnPClient/UPnPVideoSource.cs
 
13
 
 
14
RESOURCES = Banshee.UPnPClient.addin.xml
 
15
 
 
16
if UPNP_ENABLED
 
17
include $(top_srcdir)/build/build.mk
 
18
 
 
19
define EXTRA_INSTALL_DATA_HOOK
 
20
        for ASM in $(MONOUPNP_ASSEMBLIES); do \
 
21
                $(INSTALL) -m 0755 $$ASM $(DESTDIR)$(moduledir); \
 
22
        done;
 
23
endef
 
24
 
 
25
define EXTRA_UNINSTALL_HOOK
 
26
        for ASM in $(MONOUPNP_ASSEMBLIES); do \
 
27
                rm -f $(DESTDIR)$(moduledir)/`basename $$ASM`; \
 
28
        done;
 
29
endef
 
30
else
 
31
include $(top_srcdir)/build/build.dist.mk
 
32
endif
 
33