Switch to unified view

a/Makefile.am b/Makefile.am
...
...
83
                  src/OHProduct.xml src/OHInfo.xml src/OHTime.xml \
83
                  src/OHProduct.xml src/OHInfo.xml src/OHTime.xml \
84
                  src/OHVolume.xml src/OHPlaylist.xml src/OHReceiver.xml \
84
                  src/OHVolume.xml src/OHPlaylist.xml src/OHReceiver.xml \
85
                  src/OHRadio.xml src/ContentDirectory.xml \
85
                  src/OHRadio.xml src/ContentDirectory.xml \
86
                  src/protocolinfo.txt src/presentation.html
86
                  src/protocolinfo.txt src/presentation.html
87
87
88
cdpluginsdir = $(pkgdatadir)/cdplugins/
89
cdpluginspycomdir = $(pkgdatadir)/cdplugins/pycommon
90
cdpluginspycom_DATA = \
91
                    src/cdplugins/pycommon/cmdtalk.py \
92
                    src/cdplugins/pycommon/cmdtalkplugin.py \
93
                    src/cdplugins/pycommon/conftree.py \
94
                    src/cdplugins/pycommon/routing.py
95
cdpluginstidaldir = $(pkgdatadir)/cdplugins/tidal
96
cdpluginstidal_DATA = \
97
                  src/cdplugins/tidal/tidal.py 
98
cdpluginstidallibdir = $(pkgdatadir)/cdplugins/tidal/tidalapi
99
cdpluginstidallib_DATA = \
100
                  src/cdplugins/tidal/tidalapi/__init__.py \
101
                  src/cdplugins/tidal/tidalapi/models.py
102
88
EXTRA_DIST = web.tar.gz rdpl2stream.tar.gz systemd/upmpdcli.service
103
EXTRA_DIST = web.tar.gz rdpl2stream.tar.gz systemd/upmpdcli.service
89
104
90
web.tar.gz: bogus
105
web.tar.gz: bogus
91
    if test -d $(srcdir)/web; then \
106
    if test -d $(srcdir)/web; then \
92
           (cd $(srcdir); tar cvzf - web) > web.tar.gz; fi
107
           (cd $(srcdir); tar cvzf - web) > web.tar.gz; fi
...
...
102
    (cd $(DESTDIR)$(sysconfdir); test -f upmpdcli.conf || \
117
    (cd $(DESTDIR)$(sysconfdir); test -f upmpdcli.conf || \
103
            mv upmpdcli.conf-dist upmpdcli.conf)
118
            mv upmpdcli.conf-dist upmpdcli.conf)
104
    (cd $(DESTDIR)$(pkgdatadir); tar xzf -) < web.tar.gz 
119
    (cd $(DESTDIR)$(pkgdatadir); tar xzf -) < web.tar.gz 
105
    (cd $(DESTDIR)$(pkgdatadir); tar xzf -) < rdpl2stream.tar.gz
120
    (cd $(DESTDIR)$(pkgdatadir); tar xzf -) < rdpl2stream.tar.gz
106
    (cd $(DESTDIR)$(pkgdatadir); test -d src_scripts || mkdir src_scripts)
121
    (cd $(DESTDIR)$(pkgdatadir); test -d src_scripts || mkdir src_scripts)
122
  (cd $(DESTDIR)/$(cdpluginstidaldir); chmod a+x tidal.py) 
107
123
108
dist_pkgdata_SCRIPTS = samplescripts/Analog-Input
124
dist_pkgdata_SCRIPTS = samplescripts/Analog-Input
109
125
110
dist_sysconf_DATA = src/upmpdcli.conf-dist
126
dist_sysconf_DATA = src/upmpdcli.conf-dist
111
            
127