File tree Expand file tree Collapse file tree 3 files changed +70
-1
lines changed Expand file tree Collapse file tree 3 files changed +70
-1
lines changed Original file line number Diff line number Diff line change
1
+ labwc-menu-generator(1)
2
+
3
+ # NAME
4
+
5
+ labwc-menu-generator - a menu generator for labwc
6
+
7
+ # SYNOPSIS
8
+
9
+ * labwc-menu-generator* [ options...]
10
+
11
+ # DESCRIPTION
12
+
13
+ Labwc-menu-generator is independent of Desktop Environments and
14
+ associated menu-packages.
15
+
16
+ This is achieved by categorising system .desktop files against a built-
17
+ in directory-schema rather than parsing .menu and .directory files.
18
+
19
+ # OPTIONS
20
+
21
+ * -b, --bare*
22
+ Show no header or footer
23
+
24
+ * -d, --desktop*
25
+ Add .desktop filename as a comment in the XML output
26
+
27
+ * -h, --help*
28
+ Show help message and quit
29
+
30
+ * -i, --ignore <file >*
31
+ Specify file listing .desktop files to ignore
32
+
33
+ * -n, --no-duplicates*
34
+ Limit desktop entries to one directory only
35
+
36
+ * -p, --pipemenu*
37
+ Output in pipemenu format
38
+
39
+ # AUTHORS
40
+
41
+ The Labwc Team - https://github.com/labwc/labwc-menu-generator
42
+
43
+ # REPORT BUGS
44
+
45
+ Please report any bugs at:
46
+
47
+ https://github.com/labwc/labwc-menu-generator/issues/
48
+
49
+ # SEE ALSO
50
+
51
+ labwc(1), labwc-menu(5), labwc-actions(5)
Original file line number Diff line number Diff line change
1
+ scdoc = find_program (' scdoc' , required : false )
2
+
3
+ if scdoc.found()
4
+ markdown = ' labwc-menu-generator.1.scd'
5
+ manpage = ' labwc-menu-generator.1'
6
+ custom_target (
7
+ manpage,
8
+ output : manpage,
9
+ input : markdown,
10
+ command : scdoc,
11
+ feed : true ,
12
+ capture : true ,
13
+ install : true ,
14
+ install_dir : join_paths (get_option (' datadir' ), ' man' , ' man1' )
15
+ )
16
+ endif
Original file line number Diff line number Diff line change 3
3
' c' ,
4
4
version : ' 0.1.0' ,
5
5
license : ' GPL-2.0-only' ,
6
- meson_version : ' >=0.49 .0' ,
6
+ meson_version : ' >=0.59 .0' ,
7
7
default_options : [
8
8
' c_std=c11' ,
9
9
' warning_level=2' ,
@@ -18,3 +18,5 @@ executable(
18
18
dependencies : [glib],
19
19
install : true ,
20
20
)
21
+
22
+ subdir (' data' )
You can’t perform that action at this time.
0 commit comments