1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
$ cd ..
$ tree
.
├── debhello-1.6
│ ├── LICENSE
│ ├── Makefile.am
│ ├── configure.ac
│ ├── data
│ │ ├── hello.desktop
│ │ └── hello.png
│ ├── debian
│ │ ├── README.Debian
│ │ ├── changelog
│ │ ├── control
│ │ ├── copyright
│ │ ├── patches
│ │ │ └── series
│ │ ├── rules
│ │ ├── source
│ │ │ ├── control
│ │ │ ├── format
│ │ │ ├── local-options
│ │ │ ├── options
│ │ │ └── patch-header
│ │ ├── tests
│ │ │ └── control
│ │ ├── upstream
│ │ │ └── metadata
│ │ └── watch
│ ├── man
│ │ ├── Makefile.am
│ │ └── hello.1
│ └── src
│ ├── Makefile.am
│ └── hello.c
├── debhello-1.6.tar.gz
└── debhello_1.6.orig.tar.gz -> debhello-1.6.tar.gz
9 directories, 25 files
|