Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/games/aisleriot/files/patch-meson.build
16461 views
1
--- meson.build.orig 2023-09-17 17:11:49 UTC
2
+++ meson.build
3
@@ -263,11 +263,7 @@ endforeach
4
5
# Distribution
6
7
-distro = run_command(
8
- 'bash',
9
- '-c',
10
- 'source /etc/os-release && echo $ID || echo unknown; exit 0'
11
-).stdout().strip()
12
+distro = host_machine.system().to_lower()
13
14
# Options
15
16
@@ -280,6 +276,7 @@ theme_kde_base_paths = {
17
'ubuntu': '/usr/share/kde4/apps/carddecks',
18
}
19
20
+# games/pysolfc-cardsets
21
theme_pysol_base_paths = {
22
'centos': '/usr/share/PySolFC',
23
'debian': '/usr/share/games/pysol',
24
@@ -287,6 +284,7 @@ theme_pysol_base_paths = {
25
'opensuse': '/usr/share/games/pysol/data',
26
'rhel': '/usr/share/PySolFC',
27
'ubuntu': '/usr/share/games/pysol',
28
+ 'freebsd': '/usr/local/share/PySolFC',
29
}
30
31
theme_kde_path = get_option('theme_kde_path')
32
33