• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D11-Oct-2019714 4226

changelogH A D11-Oct-20192.2 KiB9049

controlH A D11-Oct-20198.8 KiB203189

copyrightH A D11-Oct-20194.9 KiB129106

dirsH A D11-Oct-201917 32

docsH A D11-Oct-201910 21

libthrift-dev.installH A D11-Oct-201955 54

libthrift0.installH A D11-Oct-2019120 65

php5-thrift.dirsH A D11-Oct-201916 21

rulesH A D11-Oct-20196.9 KiB227130

substvarsH A D11-Oct-201928 21

thrift-doc.docsH A D11-Oct-20198 31

thrift-doc.installH A D11-Oct-20198 31

README.md

1## Some tips on Debian Packaging
2
3- Debian New Maintainers' Guide [http://www.debian.org/doc/debian-policy/]
4- Debian Policy Manual [http://www.debian.org/doc/manuals/maint-guide/]
5- Machine-readable debian/copyright file [http://dep.debian.net/deps/dep5/]
6- DebSrc 3.0 guidelines [https://wiki.debian.org/Projects/DebSrc3.0]
7
8
9## Build using dpkg-buildpackage:
10
11```bash
12$ dpkg-buildpackage -d -tc
13  -d   # do not check build dependencies and conflicts.
14  -tc  # clean source tree when finished.
15```
16
17
18## Update changelog:
19
20```bash
21$ date -R
22```
23
24One can also install `devscripts` package and run:
25
26```bash
27$ dch -i
28```
29
30
31## Check packages:
32
33```bash
34$ dpkg -c *.deb
35$ lintian *.deb
36```
37
38
39## TODO
40
41Make it perfect!
42