Adding GNOME Shell drive-menu extension

This commit is contained in:
xSmurf 2019-08-15 13:21:21 -04:00 committed by Bruce Leidl
parent 598e592d17
commit 4c63530f2e
3 changed files with 20 additions and 1 deletions

View File

@ -33,7 +33,7 @@ gtk-enable-primary-paste=false
clock-format='12h'
[org.gnome.shell]
enabled-extensions=['dash-to-panel@jderose9.github.com']
enabled-extensions=['dash-to-panel@jderose9.github.com', 'drive-menu@subgraph.com']
[org.gnome.shell.extensions]
user-theme-name='Adapta-Eta'

View File

@ -24,6 +24,7 @@ RDEPENDS_${PN} = "\
gnome-shell \
hicolor-icon-theme \
dash-to-panel \
gnome-shell-extension-drive-menu \
citadel-config-gnome \
"

View File

@ -0,0 +1,18 @@
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=4cb3a392cbf81a9e685ec13b88c4c101"
SRC_URI = "git://github.com/subgraph/gnome-shell-extension-drive-menu.git;protocol=https"
SRCREV="45bbb0e9fe87f1f44d3eec49f31a1efa835f4f6b"
S = "${WORKDIR}/git"
DEPENDS = "gettext-native glib-2.0-native ninja-native"
FILES_${PN} = "${datadir}/gnome-shell/extensions"
EXTRA_OEMESON += "--prefix=${D}/usr"
inherit meson
do_configure_prepend () {
cd ${S}
./meson-gse/meson-gse
}