-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install the wallpapers with meson along with their background data. Next step - nuke the icons autotools help Signed-off-by: Ikey Doherty <[email protected]>
- Loading branch information
1 parent
fa34562
commit 00ea7d5
Showing
10 changed files
with
424 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1 @@ | ||
Makefile | ||
Makefile.in | ||
aclocal.m4 | ||
autom4te.cache/ | ||
backgrounds/solus-wallpapers.xml | ||
backgrounds/solus-wallpapers-mate.xml | ||
config.* | ||
configure | ||
install-sh | ||
missing | ||
/build/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Current wallpaper set | ||
|
||
wallpapers = [ | ||
'Crags.png', | ||
'Cliffs_of_Moher.png', | ||
'Twigonometry.jpg', | ||
'SolusFresh.png', | ||
'LegendaryBarrels.jpg', | ||
'Excl_Autumn_Leaf.jpg', | ||
'Excl_Lazy_Summer_Leaf.jpg', | ||
'Excl_Lonely_Railway.jpg', | ||
'Excl_Focal_Leaf.jpg', | ||
'Excl_Focal_Spring.jpg', | ||
'Excl_Vintage_Bicycles.jpg', | ||
'Excl_Autumn_Retreat.jpg', | ||
'PubSide.jpg', | ||
'TullamoreGrandCanal.jpg', | ||
'HermiteCrab2560x1600.jpg', | ||
'book.png', | ||
'chalk.jpeg', | ||
'BogFlower.jpg', | ||
'BrittasLake.jpg', | ||
'IMG_0597-solus.JPG', | ||
'IMG_0604-solus.JPG', | ||
'IMG_0608-solus.JPG', | ||
'IMG_0609-solus.JPG', | ||
'Mama.jpg', | ||
'Path.jpg', | ||
'TulipBee.jpg', | ||
'ShannonClonmacnoise.jpg', | ||
'Athlone-Shannon-1920x1080.png', | ||
'Solus-2016-abstract1-1920x1080.jpg', | ||
'Solus-2016UltraBlur-1920x1080.jpg', | ||
] | ||
|
||
wallpaper_dir = join_paths(path_datadir, 'backgrounds', 'solus') | ||
|
||
install_data( | ||
wallpapers, | ||
install_dir: wallpaper_dir, | ||
) | ||
|
||
# Allow configuring the two wallpaper XML files | ||
cdata = configuration_data() | ||
cdata.set('prefix', path_prefix) | ||
|
||
# GNOME/Budgie Wallpaper definition | ||
gnome_background_dir = join_paths(path_datadir, 'gnome-background-properties') | ||
configure_file( | ||
input: 'solus-wallpapers.xml.in', | ||
output: 'solus-wallpapers.xml', | ||
configuration: cdata, | ||
install_dir: gnome_background_dir, | ||
) | ||
|
||
# MATE Wallpaper definition | ||
mate_background_dir = join_paths(path_datadir, 'mate-background-properties') | ||
configure_file( | ||
input: 'solus-wallpapers-mate.xml.in', | ||
output: 'solus-wallpapers-mate.xml', | ||
configuration: cdata, | ||
install_dir: mate_background_dir, | ||
) |
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
project( | ||
'artwork', | ||
['c'], | ||
version: '18', | ||
license: [ | ||
'GPL-2.0', | ||
'CCBY-3.0 ', | ||
'CCBY-SA-4.0', | ||
], | ||
default_options: [ | ||
'prefix=/usr', | ||
'sysconfdir=/etc', | ||
], | ||
) | ||
|
||
path_prefix = get_option('prefix') | ||
path_datadir = join_paths(path_prefix, get_option('datadir')) | ||
|
||
subdir('backgrounds') | ||
subdir('icons') | ||
|
||
report = [ | ||
' Build configuration:', | ||
' ====================', | ||
'', | ||
' prefix: @0@'.format(path_prefix), | ||
' datadir: @0@'.format(path_datadir), | ||
] | ||
|
||
# Output some stuff to validate the build config | ||
message('\n\n\n' + '\n'.join(report) + '\n\n') |
Oops, something went wrong.