forked from haghish/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.do
76 lines (61 loc) · 3.38 KB
/
make.do
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// the 'make.do' file is automatically created by 'github' package.
// execute the code below to generate the package installation files.
// DO NOT FORGET to update the version of the package, if changed!
// for more information visit http://github.com/haghish/github
make github, replace toc pkg version(2.3.0) ///
license("MIT") ///
author("E. F. Haghish") ///
affiliation("University of Göttingen") ///
email("[email protected]") ///
url("https://github.com/haghish/github") ///
title("github package manager") ///
description("search, install, and manage github packages") ///
install("abspath.ado;abspath.sthlp;githubfindall.ado;" ///
"githubfindall.sthlp;wdpermissions.ado;" ///
"gitget.ado;gitget.dta;gitget.sthlp;gitgetlist.ado;github.ado;" ///
"github.dlg;github.sthlp;githubcheck.ado;githubconfirm.ado;" ///
"githubdb.ado;githubdependency.ado;githubfiles.dta;" ///
"githubhot.ado;githublistpack.ado;githublistpack.sthlp;" ///
"githuboutput.ado;githubquery.ado;githubsearch.ado;" ///
"make.ado;make.sthlp;make.dlg;makedlg.ado;" ///
"githubmake.ado;githubsearchsteps.ado;githubcheckfilename.ado") ///
ancillary("gitget.dta;githubfiles.dta")
/*
Generating the package documentation
====================================
The package documentation is written in Markdown language.
The MARKDOC package extract these documentation and
create the Stata help files as well as Markdown
documentation for GitHub Wiki. Learn more about MARKDOC
here: https://github.com/haghish/markdoc
Generating Stata Help Files
---------------------------
*/
markdoc "github.ado", mini export(sthlp) replace
markdoc "gitget.ado", mini export(sthlp) replace
markdoc "githublistpack.ado", mini export(sthlp) replace
markdoc "abspath.ado", mini export(sthlp) replace
markdoc "githubfindall.ado", mini export(sthlp) replace
/*
Generating markdown files for GitHub Wiki
-----------------------------------------
*/
markdoc "github.ado", mini export(md) replace
markdoc "gitget.ado", mini export(md) replace
markdoc "githublistpack.ado", mini export(md) replace
markdoc "abspath.ado", mini export(md) replace
markdoc "githubfindall.ado", mini export(md) replace
/*
Generating the package vignette
-----------------------------------------
*/
markdoc "vignette.do", mini export(html) replace ///
title("github v. 2.0.0 package vignette") ///
author("E. F. Haghish") ///
affiliation("University of Goettingen") ///
address("[email protected]")
markdoc "vignette.do", export(tex) toc replace master ///
title("github v. 2.0.0 package vignette") ///
author("E. F. Haghish") ///
affiliation("University of Goettingen") ///
address("[email protected]")