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
|
$ cd /path/to
$ tree
.
├── debhello-2.1
│ ├── CMakeLists.txt
│ ├── LICENSE
│ ├── README.md
│ ├── data
│ │ ├── hello.desktop
│ │ └── hello.png
│ ├── debian
│ │ ├── README.Debian
│ │ ├── README.source
│ │ ├── changelog
│ │ ├── clean
│ │ ├── control
│ │ ├── copyright
│ │ ├── debhello.dirs
│ │ ├── debhello.doc-base
│ │ ├── debhello.docs
│ │ ├── debhello.examples
│ │ ├── debhello.info
│ │ ├── debhello.install
│ │ ├── debhello.links
│ │ ├── debhello.manpages
│ │ ├── gbp.conf
│ │ ├── libsharedlib-dev.install
│ │ ├── libsharedlib1.install
│ │ ├── libsharedlib1.symbols
│ │ ├── patches
│ │ │ └── series
│ │ ├── rules
│ │ ├── salsa-ci.yml
│ │ ├── source
│ │ │ ├── format
│ │ │ ├── local-options.ex
│ │ │ └── local-patch-header.ex
│ │ ├── tests
│ │ │ └── control
│ │ ├── upstream
│ │ │ └── metadata
│ │ └── watch
│ ├── lib
│ │ ├── CMakeLists.txt
│ │ ├── sharedlib.c
│ │ └── sharedlib.h
│ ├── man
│ │ ├── CMakeLists.txt
│ │ └── hello.1
│ └── src
│ ├── CMakeLists.txt
│ ├── config.h.in
│ └── hello.c
├── debhello-2.1.tar.gz
└── debhello_2.1.orig.tar.gz -> debhello-2.1.tar.gz
11 directories, 42 files
|