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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
$ cd ..
$ tree
.
├── debhello-2.0
│ ├── ABOUT-NLS
│ ├── ChangeLog
│ ├── Makefile.am
│ ├── configure.ac
│ ├── data
│ │ ├── hello.desktop.in
│ │ └── hello.png
│ ├── debian
│ │ ├── README.Debian
│ │ ├── changelog
│ │ ├── clean
│ │ ├── control
│ │ ├── copyright
│ │ ├── debhello.doc-base
│ │ ├── debhello.docs
│ │ ├── debhello.examples
│ │ ├── debhello.info
│ │ ├── debhello.install
│ │ ├── debhello.links
│ │ ├── debhello.manpages
│ │ ├── debhello.postinst
│ │ ├── debhello.postrm
│ │ ├── debhello.preinst
│ │ ├── debhello.prerm
│ │ ├── libsharedlib-dev.install
│ │ ├── libsharedlib1.install
│ │ ├── libsharedlib1.symbols
│ │ ├── patches
│ │ │ └── series
│ │ ├── rules
│ │ ├── source
│ │ │ ├── control
│ │ │ ├── format
│ │ │ ├── local-options
│ │ │ ├── options
│ │ │ └── patch-header
│ │ ├── tests
│ │ │ └── control
│ │ ├── upstream
│ │ │ └── metadata
│ │ └── watch
│ ├── lib
│ │ ├── Makefile.am
│ │ ├── sharedlib.c
│ │ └── sharedlib.h
│ ├── man
│ │ ├── Makefile.am
│ │ └── hello.1
│ ├── po
│ │ ├── ChangeLog
│ │ ├── LINGUAS
│ │ ├── Makefile.in.in
│ │ ├── Makevars
│ │ ├── POTFILES.in
│ │ ├── Rules-quot
│ │ ├── boldquot.sed
│ │ ├── debhello.pot
│ │ ├── en@boldquot.header
│ │ ├── en@quot.header
│ │ ├── fr.po
│ │ ├── insert-header.sin
│ │ ├── quot.sed
│ │ └── remove-potcdate.sin
│ └── src
│ ├── Makefile.am
│ └── hello.c
├── debhello-2.0.tar.gz
└── debhello_2.0.orig.tar.gz -> debhello-2.0.tar.gz
11 directories, 58 files
|