-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathREADME.AutoMate
53 lines (32 loc) · 1.26 KB
/
README.AutoMate
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
Short guide to build packages in AutoMate:
* Add debian/watch with following content (#PACKAGE# is the lowercase
package name):
version=3
http://pub.mate-desktop.org/releases/(\d\.\d)/#PACKAGE#-(.*)\.tar\.bz2
* Add at the end of debian/rules:
get-orig-source:
uscan --noconf --force-download --rename --repack --download-current-version --destdir=.
* Switch to augogen.sh if necessary (add also mate-common in debian/control!):
DEB_CONFIGURE_SCRIPT := ./autogen.sh
* Check if possible to solve some lintian warnings/errors:
http://mate.karapetsas.com/lintian.php?package=#PACKAGE#
* Add -dbg and -doc packages, if they are useful:
Package: #PKGNAME#-dbg
Section: debug
Priority: extra
Architecture: any
Depends: ${misc:Depends},
#PKGNAME# (= ${binary:Version}),
#LIBPKGNAME# (= ${binary:Version})
Description: #DESCRIPTION# (debugging symbols)
This package contains debugging symbols for #PKGNAME# and the
#PKGNAME# library. It is provided to help debugging problems.
The debugging symbols are installed in /usr/lib/debug and will
automatically be used by gdb.
Package: #PKGNAME#-doc
Section: doc
Architecture: all
Description: #DESCRIPTION# (documentation files)
#LONGDESCRIPTION#.
.
This package contains the documentation files.