-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPACKAGING
52 lines (35 loc) · 1.13 KB
/
PACKAGING
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
This file documents how to package JIGS.
Packaging JIGS into RPM
=======================
All is ready for this. All instructions start in the jigs top level
directory.
* To create an RPM for jigs
Edit the jigs.spec.in file.
su
export RPM_TOPDIR=/usr/src/redhat
make rpm
<replacing /usr/src/redhat with the top level dir of your RPM directory>
* To create an RPM for jigs-debug
Edit the jigs-debug.spec.in file.
su
export RPM_TOPDIR=/usr/src/redhat
make debug=yes rpm
<replacing /usr/src/redhat with the top level dir of your RPM directory>
* To create an RPM for gnustep-base-wrapper
install the RPM for JIGS first
cd Wrappers/base
Edit the Wrappers/base/gnustep-base-wrapper.spec.in file
su
export RPM_TOPDIR=/usr/src/redhat
make rpm
* To create an RPM for gnustep-base-wrapper-debug
install the RPM for JIGS first
cd Wrappers/base
Edit the Wrappers/base/gnustep-base-wrapper-debug.spec.in file
su
export RPM_TOPDIR=/usr/src/redhat
make debug=yes rpm
Packaging JIGS into DEB
=======================
I have no idea - I suppose we would really need a Debian maintainer to
take care of this.