Skip to content

Commit

Permalink
Drop pkgconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Sep 22, 2022
1 parent 2617138 commit 6d05eeb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ which should show up in your applications menu. `mate-hud.py` reads two gsetting

`mate-hud.py` will not execute until those gsettings keys are created,
which the `mate-hud` Debian package will do, and the `enabled` key
is set to *True* using something like `dconf-editor`.
is set to *True* using something like `dconf-editor`.

`mate-hud` can be enabled or disabled by MATE Tweak under `Panel > Panel Features > Enable HUD`.

Expand Down Expand Up @@ -78,7 +78,6 @@ export UBUNTU_MENUPROXY=1
* `mate-desktop`
* `python3`
* `python3-dbus`
* `python3-pkgconfig`
* `python3-pyinotify`
* `python3-setproctitle`
* `python3-xlib`
Expand Down
11 changes: 4 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
import DistUtilsExtra.command.build_i18n
import DistUtilsExtra.command.clean_i18n

import pkgconfig
rofi_prefix = pkgconfig.variables('rofi').get('prefix')

__VERSION__ = '22.10.0'

def datafilelist(installbase, sourcebase):
Expand Down Expand Up @@ -70,10 +67,10 @@ def datafilelist(installbase, sourcebase):
('{prefix}/share/icons/hicolor/64x64@2/apps'.format(prefix=sys.prefix), ['usr/share/icons/hicolor/64x64@2/apps/mate-hud.png']),
('{prefix}/share/icons/hicolor/128x128@2/apps'.format(prefix=sys.prefix), ['usr/share/icons/hicolor/128x128@2/apps/mate-hud.png']),
('{prefix}/share/icons/hicolor/scalable/apps'.format(prefix=sys.prefix), ['usr/share/icons/hicolor/scalable/apps/mate-hud.svg']),
('{prefix}/share/rofi/themes/'.format(prefix=rofi_prefix), ['usr/share/rofi/themes/mate-hud.rasi']),
('{prefix}/share/rofi/themes/'.format(prefix=rofi_prefix), ['usr/share/rofi/themes/mate-hud-hidpi.rasi']),
('{prefix}/share/rofi/themes/'.format(prefix=rofi_prefix), ['usr/share/rofi/themes/mate-hud-rounded.rasi']),
('{prefix}/share/rofi/themes/'.format(prefix=rofi_prefix), ['usr/share/rofi/themes/mate-hud-rounded-hidpi.rasi']),
('{prefix}/share/rofi/themes/'.format(prefix=sys.prefix), ['usr/share/rofi/themes/mate-hud.rasi']),
('{prefix}/share/rofi/themes/'.format(prefix=sys.prefix), ['usr/share/rofi/themes/mate-hud-hidpi.rasi']),
('{prefix}/share/rofi/themes/'.format(prefix=sys.prefix), ['usr/share/rofi/themes/mate-hud-rounded.rasi']),
('{prefix}/share/rofi/themes/'.format(prefix=sys.prefix), ['usr/share/rofi/themes/mate-hud-rounded-hidpi.rasi']),
]

cmdclass = {
Expand Down

0 comments on commit 6d05eeb

Please sign in to comment.