806
contributi
Riga 36: | Riga 36: | ||
Nell' esempio di questa guida il nostro repository contiene due pacchetti di tipo binario (apt e apt-best) ed un pacchetto di tipo sorgente (apt). Vedremo ora come creare i relativi file Packages.gz e Sources.gz | Nell' esempio di questa guida il nostro repository contiene due pacchetti di tipo binario (apt e apt-best) ed un pacchetto di tipo sorgente (apt). Vedremo ora come creare i relativi file Packages.gz e Sources.gz | ||
La struttura del repository di esempio questa: | |||
<pre> | |||
$ tree debian | |||
debian | |||
|-- binary | |||
| |-- apt-best-0.3.deb | |||
| |-- apt-doc_0.5.28.6_all.deb | |||
| |-- apt-utils_0.5.28.6_i386.deb | |||
| |-- apt_0.5.28.6_i386.deb | |||
| |-- libapt-pkg-dev_0.5.28.6_i386.deb | |||
| `-- libapt-pkg-doc_0.5.28.6_all.deb | |||
`-- source | |||
|-- apt_0.5.28.6.dsc | |||
`-- apt_0.5.28.6.tar.gz | |||
</pre> | |||
Procediamo con la creazione del file Packages.gz: | |||
<pre> | |||
$ cd ~/debian | |||
$ dpkg-scanpackages binary /dev/null | gzip -9c > binary/Packages.gz | |||
apt apt-best apt-doc apt-utils libapt-pkg-dev libapt-pkg-doc | |||
Wrote 6 entries to output Packages file. | |||
$ ls ~/debian/binary/ |grep Packages | |||
Packages.gz | |||
</pre> | |||
e del file Sources.gz | |||
<pre> | |||
$ cd ~/debian | |||
$ dpkg-scansources source /dev/null | gzip -9c > source/Sources.gz | |||
$ ls ~/debian/source/ |grep Sources | |||
Sources.gz | |||
</pre> | |||
==I file di Release== | ==I file di Release== | ||
==Uso del repository== | ==Uso del repository== |
contributi