-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
128 lines (99 loc) · 2.41 KB
/
README
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
How to build:
First set up the environment:
tools/prepare
-> tools/install-dependencies
Then depending on what you like, first fetch all packages:
tools/fetch-all
-> tools/forall
-> tools/fetch
Then unzip all packages:
tools/unzip-all
-> tools/forall
-> tools/unzip
Then patch all packages:
tools/patch-all
-> tools/forall
-> tools/patch
And finally build everything:
tools/build-all
-> tools/forall
-> tools/complete-build
-> tools/configure
-> tools/build
-> tools/install-staging
-> tools/install
Or do it in one go:
tools/rebuild-all
->tools/fetch-all
->tools/clean-all
->tools/unzip-all
->tools/patch-all
->tools/build-all
If you wish to rebuild including fetching packages again:
tools/rebuild-all-full
->tools/refetch-all
->tools/clean-all
->tools/unzip-all
->tools/patch-all
->tools/build-all
You can always clean everything:
tools/clean-all
-> tools/forall
-> tools/clean
Of course you can also do the packages step by step:
tools/fetch <package>
uses
tools/functions
package/<package>/package
tools/unzip <package>
uses
tools/functions
package/<package>/package
tools/setenv
tools/patch <package>
uses
tools/functions
tools/install-functions
package/<package>/package
tools/setenv
patches/<package>/*.patch
package/<package>/post-patch (if existing)
tools/complete-build <package>
OR
tools/configure <package>
uses
tools/functions
tools/install-functions
package/<package>/package
tools/setenv
package/<package>/gettextize (if existing)
package/<package>/autoreconfigure (if existing)
package/<package>/configure
tools/build <package>
uses
tools/functions
package/<package>/package
tools/setenv
package/<package>/build
tools/install-staging <package>
uses
tools/functions
tools/install-functions
package/<package>/package
tools/setenv
package/<package>/install-staging (if existing, otherwise default action)
package/<package>/post-install-staging (if existing)
tools/install <package>
uses
tools/functions
tools/install-functions
package/<package>/package
tools/setenv
package/<package>/install (if existing, otherwise default action)
package/<package>/post-install (if existing)
To clean a single package:
tools/clean <package>
uses
tools/functions
package/<package>/package
tools/setenv