diff options
author | Jordan Petridis <jpetridis@gnome.org> | 2020-11-11 04:20:31 +0200 |
---|---|---|
committer | Jordan Petridis <jpetridis@gnome.org> | 2020-11-26 02:35:06 +0200 |
commit | 08af386743fefbadac7bd60d7cfa2f39eca06a6f (patch) | |
tree | 5d09096a819075b31b945b3344705b5c2e52f208 | |
parent | 947a8307d4f935edc02a8537546cc529b0a56379 (diff) | |
download | epiphany-08af386743fefbadac7bd60d7cfa2f39eca06a6f.tar.gz |
flatpak: add elementary stylesheet and icon modules
Needed so we can use the correct assets when running under
Pantheon and to make it easier to test Pantheon related
specific changes.
-rw-r--r-- | org.gnome.Epiphany.json | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/org.gnome.Epiphany.json b/org.gnome.Epiphany.json index 35c4a03a0..f5d0f73a3 100644 --- a/org.gnome.Epiphany.json +++ b/org.gnome.Epiphany.json @@ -20,6 +20,75 @@ "--system-talk-name=org.freedesktop.GeoClue2" ], "modules" : [ + { + "name": "elementary-icons", + "buildsystem": "meson", + "sources": [ + { + "type": "git", + "url": "https://github.com/elementary/icons.git" + } + ], + "modules": [ + { + "name": "xcursorgen", + "cleanup": [ "*" ], + "sources": [ + { + "type": "git", + "url": "https://gitlab.freedesktop.org/xorg/app/xcursorgen.git", + "tag": "xcursorgen-1.0.7" + } + ] + } + ] + }, + { + "name": "elementary-stylesheet", + "buildsystem": "meson", + "sources": [ + { + "type": "git", + "url": "https://github.com/elementary/stylesheet.git" + } + ], + "modules": [ + { + "name": "sassc", + "cleanup": [ "*" ], + "sources": [ + { + "type": "git", + "url": "https://github.com/sass/sassc.git", + "tag": "3.6.1" + }, + { + "type": "script", + "dest-filename": "autogen.sh", + "commands": [ "autoreconf -si" ] + } + ], + "modules": [ + { + "name": "libsass", + "cleanup": [ "*" ], + "sources": [ + { + "type": "git", + "url": "https://github.com/sass/libsass.git", + "tag": "3.6.4" + }, + { + "type": "script", + "dest-filename": "autogen.sh", + "commands": [ "autoreconf -si" ] + } + ] + } + ] + } + ] + }, { "name" : "libdazzle", "buildsystem" : "meson", |