Moved debian-tools (from CVS) to here.
[git-tools-moved-to-github.git] / update-archive / apt-ftparchive.conf.in
1 // $Id: apt-ftparchive.conf.in,v 1.1.1.1 2006-06-15 11:53:00 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 ".";
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 // By default all Packages should have the extension ".deb"
29 Default {
30         Packages {
31                 Extensions ".deb";
32         };
33 };
34