blob: 10c221b255caae49e3e9225e7c7360838dff4a4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
TODO:
* Make oh-strip obey a missing '-l' option.
* Check on file ownership and modes.
Future Plans:
* Package signing. [1]
* Calculate "Installed-Size" field values. [2]
* Compress documentation files. [3]
* Write an 'opkcreate' script like dh_make to create a new source package.
* Control field variables/macros (e.g. package version)
Notes:
1: Requires opkg to be built with GnuPG and GPGME.
2: There is an inconsistency between the Debian Policy and opkg in the units
of this field. The Debian Policy defines this field in units of kibibytes:
The disk space is given as the integer value of the estimated installed
size in bytes, divided by 1024 and rounded up.
However, opkg apparently attempts to convert this value from bytes to
kibibytes in its determination of whether the package's data will fit on the
system:
pkg_size_kbs = (pkg->installed_size + 1023)/1024;
For now, we'll omit this field (as a result, opkg simply won't make sure
there is enough free space).
3: Follow the model of debhelper's dh_compress.
|