1 // This config is for use with the pool-structure for the packages, thus we
2 // don't use a Tree Section in here
4 // The debian archive should be in the current working dir
10 // Create Packages, Packages.gz and Packages.bz2, remove what you don't need
12 Packages::Compress ". gzip bzip2";
13 Sources::Compress ". gzip bzip2";
14 Contents::Compress ". gzip bzip2";
17 // Includes the main section. You can structure the directory tree under
18 // ./pool/main any way you like, apt-ftparchive will take any deb (and
19 // source package) it can find. This creates a Packages a Sources and a
20 // Contents file for these in the main section of the sid release
21 BinDirectory "pool/main" {
22 Packages "dists/sid/main/binary-i386/Packages";
23 Sources "dists/sid/main/source/Sources";
24 Contents "dists/sid/Contents-i386";
27 // This is the same for the contrib section
28 BinDirectory "pool/contrib" {
29 Packages "dists/sid/contrib/binary-i386/Packages";
30 Sources "dists/sid/contrib/source/Sources";
31 Contents "dists/sid/Contents-i386";
34 // This is the same for the non-free section
35 BinDirectory "pool/non-free" {
36 Packages "dists/sid/non-free/binary-i386/Packages";
37 Sources "dists/sid/non-free/source/Sources";
38 Contents "dists/sid/Contents-i386";
41 // By default all Packages should have the extension ".deb"