summaryrefslogtreecommitdiff
path: root/xdgmenumaker/debian/control
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-01-13 14:14:10 +0000
committerB Stack <bgstack15@gmail.com>2020-01-13 14:14:10 +0000
commita63b8381490cfad4df5b9f4677954dcff92b480f (patch)
treec6862acd465d9270c68cfc47918f36e08a10d77b /xdgmenumaker/debian/control
parentimprove debian/watch files for many packages (diff)
parentadd dpkg-trigger function to xdgmenumaker (diff)
downloadstackrpms-a63b8381490cfad4df5b9f4677954dcff92b480f.tar.gz
stackrpms-a63b8381490cfad4df5b9f4677954dcff92b480f.tar.bz2
stackrpms-a63b8381490cfad4df5b9f4677954dcff92b480f.zip
Merge branch 'xdgmenumaker-bump' into 'master'
add xdgmenumaker See merge request bgstack15/stackrpms!113
Diffstat (limited to 'xdgmenumaker/debian/control')
-rw-r--r--xdgmenumaker/debian/control34
1 files changed, 34 insertions, 0 deletions
diff --git a/xdgmenumaker/debian/control b/xdgmenumaker/debian/control
new file mode 100644
index 0000000..53ef3cf
--- /dev/null
+++ b/xdgmenumaker/debian/control
@@ -0,0 +1,34 @@
+Source: xdgmenumaker
+Section: x11
+Priority: optional
+Maintainer: B Stack <bgstack15@gmail.com>
+Build-Depends: debhelper (>=12~),
+ dh-python,
+ txt2tags
+Standards-Version: 4.1.4
+Homepage: https://github.com/gapan/xdgmenumaker
+
+Package: xdgmenumaker
+Architecture: any
+Multi-Arch: foreign
+Pre-Depends: xvfb
+Depends: ${misc:Depends}, ${shlibs:Depends},
+ python3,
+ python3-xdg,
+ python3-gi
+# for python2:
+# python2
+# python-gi
+# python-gtk2
+Suggests:
+ python3-pil
+# for python2:
+# python-pil
+Description: Cli tool that generates XDG menus for several window managers
+ xdgmenumaker is a command line tool, written in python, that generates
+ application menus using xdg information, by scanning *.desktop files in
+ all $XDG_DATA_DIRS/applications directories. All applications are sorted
+ according to the main categories as specified by freedesktop.org.
+ .
+ Supports amiwm, blackbox, compizboxmenu, fluxbox, fvwm, icewm, jwm,
+ pekwm, twm and derivatives such as ctwm and vtwm, windowmaker.
bgstack15