mirror of
https://github.com/clearlinux/clr-wallpapers.git
synced 2026-09-01 11:25:50 +00:00
This data is used by the GNOME Desktop to query the presence and usability of default wallpapers provided by packaging in the distribution. It is typically also used by applications such as GNOME Control Center to provide a view of the available system wallpapers. Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
24 lines
758 B
Makefile
24 lines
758 B
Makefile
artworkdir = $(datadir)/backgrounds/clearlinux
|
|
legacydir = $(datadir)/backgrounds/xfce
|
|
|
|
artwork_DATA = \
|
|
Wallpapers/4K/wallpaper_4K_01.jpg \
|
|
Wallpapers/4K/wallpaper_4K_02.jpg \
|
|
Wallpapers/4K/wallpaper_4K_03.jpg
|
|
|
|
backgroundpropsdir = $(datadir)/gnome-background-properties
|
|
backgroundprops_DATA = \
|
|
clr-wallpapers.xml
|
|
|
|
EXTRA_DIST = \
|
|
$(artwork_DATA) \
|
|
clr-wallpapers.xml.in
|
|
|
|
# Restore compat links for artwork_DATA
|
|
install-exec-hook:
|
|
$(MKDIR_P) $(DESTDIR)/$(legacydir)
|
|
$(LN_S) ../clearlinux/wallpaper_4K_01.jpg $(DESTDIR)/$(legacydir)/wallpaper_4K_01.jpg
|
|
$(LN_S) ../clearlinux/wallpaper_4K_02.jpg $(DESTDIR)/$(legacydir)/wallpaper_4K_02.jpg
|
|
$(LN_S) ../clearlinux/wallpaper_4K_03.jpg $(DESTDIR)/$(legacydir)/wallpaper_4K_03.jpg
|
|
|