diff --git a/io.elementary.Sdk.json.in b/io.elementary.Sdk.json.in index 4c2a36a..20bae57 100644 --- a/io.elementary.Sdk.json.in +++ b/io.elementary.Sdk.json.in @@ -32,14 +32,25 @@ } }, "modules": [ + { + "name": "icons", + "buildsystem": "meson", + "sources": [ + { + "type": "git", + "url": "https://github.com/elementary/icons.git", + "tag": "5.1.0" + } + ] + }, { - "name": "libgee", - "config-opts": [ "--disable-static" ], + "name": "stylesheet", + "buildsystem": "meson", "sources": [ { "type": "git", - "url": "https://gitlab.gnome.org/GNOME/libgee.git", - "tag": "0.20.2" + "url": "https://github.com/elementary/stylesheet.git", + "tag": "5.3.0" } ] }, @@ -50,7 +61,7 @@ { "type": "git", "url": "https://github.com/elementary/granite.git", - "tag": "5.2.4" + "tag": "5.2.5" } ] }, @@ -98,39 +109,6 @@ ] } ] - }, - { - "name": "libunity", - "buildsystem": "autotools", - "sources": [ - { - "type": "bzr", - "url": "https://code.launchpad.net/~unity-team/libunity/trunk" - } - ], - "modules": [ - { - "name": "libdbusmenu", - "buildsystem": "autotools", - "config-opts": [ "--disable-dumper" ], - "sources": [ - { - "type": "bzr", - "url": "https://code.launchpad.net/~dbusmenu-team/libdbusmenu/trunk.16.10" - } - ] - }, - { - "name": "dee", - "buildsystem": "autotools", - "sources": [ - { - "type": "bzr", - "url": "https://code.launchpad.net/~unity-team/dee/trunk" - } - ] - } - ] } ] } diff --git a/meson.build b/meson.build index cb82aef..344bfd8 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('io.elementary.Sdk', version: '0.1.0') data = configuration_data() data.set('SDK_BRANCH', meson.project_version()) -data.set('GNOME_VERSION', '3.32') +data.set('GNOME_VERSION', '3.34') sdk_json = configure_file( input: 'io.elementary.Sdk.json.in',