amd64/i386 architectures
[git-tools-moved-to-github.git] / update-archive / apt-ftparchive.conf.in
1 // $Id: apt-ftparchive.conf.in,v 1.2 2008-10-20 10:24:15 adam Exp $
2 // This config is for us with the pool-structure for the packages, thus we
3 // don't use a Tree Section in here
4
5 // The debian archive should be in the current working dir
6 Dir {
7         ArchiveDir ".";
8         CacheDir "tmp";
9 };
10
11 // Create Packages, Packages.gz and Packages.bz2, remove what you don't need
12 Default {
13         Packages::Compress ". gzip bzip2";
14         Sources::Compress ". gzip bzip2";
15         Contents::Compress ". gzip bzip2";
16 };
17
18 // Includes the main section. You can structure the directory tree under
19 // ./pool/main any way you like, apt-ftparchive will take any deb (and
20 // source package) it can find. This creates a Packages a Sources and a
21 // Contents file for these in the main section of the sid release
22 // BinDirectory "pool/@dist@" {
23 //      Packages "dists/@dist@/main/binary-i386/Packages";
24 //      Sources "dists/@dist@/main/source/Sources";
25 //      Contents "dists/@dist@/Contents-i386";
26 // };
27
28 TreeDefault {
29         Directory "pool/$(DIST)/$(ARCH)";
30         SrcDirectory "pool/$(DIST)/source";
31         Packages "$(DIST)/$(SECTION)/binary-$(ARCH)/Packages";
32         Sources "$(DIST)/$(SECTION)/source/Sources";
33         Contents "$(DIST)/Contents-$(ARCH)";
34 };
35
36 Tree "dists/@dist@" {
37         Sections "main";
38         Architectures "source @architectures@";
39         SrcOverride "/dev/null";
40 };
41 // By default all Packages should have the extension ".deb"
42 //Default {
43 //      Packages {
44 //              Extensions ".deb";
45 //      };
46 //};
47