Adding debian version 0.1-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
5bbf1f19af
commit
77fa13c7e5
10 changed files with 98 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
lzd (0.1-1) unstable; urgency=low
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 25 Mar 2013 19:09:51 +0100
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
35
debian/control
vendored
Normal file
35
debian/control
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
Source: lzd
|
||||
Section: utils
|
||||
Priority: extra
|
||||
Maintainer: Daniel Baumann <mail@daniel-baumann.ch>
|
||||
Build-Depends: debhelper (>= 9)
|
||||
Standards-Version: 3.9.4
|
||||
Homepage: http://www.nongnu.org/lzip/lzip.html
|
||||
|
||||
Package: lzd
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||
Description: Educational, lossless data compressor based on the LZMA algorithm
|
||||
Lzip is a lossless data compressor based on the LZMA algorithm, with very safe
|
||||
integrity checking and a user interface similar to the one of gzip or bzip2.
|
||||
Lzip decompresses almost as fast as gzip and compresses better than bzip2,
|
||||
which makes it well suited for software distribution and data archiving.
|
||||
.
|
||||
Lzd is a very simplified decompressor for lzip files with an educational
|
||||
purpose. Studying its source is a good first step to understand how lzip works.
|
||||
|
||||
Package: lzd-dbg
|
||||
Section: debug
|
||||
Priority: extra
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, lzd (= ${binary:Version})
|
||||
Description: Educational, lossless data compressor based on the LZMA algorithm (debug)
|
||||
Lzip is a lossless data compressor based on the LZMA algorithm, with very safe
|
||||
integrity checking and a user interface similar to the one of gzip or bzip2.
|
||||
Lzip decompresses almost as fast as gzip and compresses better than bzip2,
|
||||
which makes it well suited for software distribution and data archiving.
|
||||
.
|
||||
Lzd is a very simplified decompressor for lzip files with an educational
|
||||
purpose. Studying its source is a good first step to understand how lzip works.
|
||||
.
|
||||
This package contains the debugging symbols.
|
20
debian/copyright
vendored
Normal file
20
debian/copyright
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: Lzd
|
||||
Upstream-Contact: lzip-bug@nongnu.org
|
||||
Source: http://download.savannah.gnu.org/releases/lzip/
|
||||
|
||||
Files: *
|
||||
Copyright: 2013 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
License: PD
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2013 Daniel Baumann <mail@daniel-baumann.ch>
|
||||
License: PD
|
||||
|
||||
License: PD
|
||||
This program is free software: you have unlimited permission
|
||||
to copy, distribute and modify it.
|
||||
.
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2
debian/lzd.docs
vendored
Normal file
2
debian/lzd.docs
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
NEWS
|
||||
README
|
19
debian/patches/0001-build.patch
vendored
Normal file
19
debian/patches/0001-build.patch
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
Author: Daniel Baumann <mail@daniel-baumann.ch>
|
||||
Description: Avoid overwriting build-environment.
|
||||
|
||||
diff -Naurp lzd.orig/configure lzd/configure
|
||||
--- lzd.orig/configure
|
||||
+++ lzd/configure
|
||||
@@ -23,9 +23,9 @@ datarootdir='$(prefix)/share'
|
||||
infodir='$(datarootdir)/info'
|
||||
mandir='$(datarootdir)/man'
|
||||
CXX=g++
|
||||
-CPPFLAGS=
|
||||
-CXXFLAGS='-Wall -W -O2'
|
||||
-LDFLAGS=
|
||||
+#CPPFLAGS=
|
||||
+#CXXFLAGS='-Wall -W -O2'
|
||||
+#LDFLAGS=
|
||||
|
||||
# checking whether we are using GNU C++.
|
||||
if [ ! -x /bin/g++ ] &&
|
1
debian/patches/series
vendored
Normal file
1
debian/patches/series
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
0001-build.patch
|
13
debian/rules
vendored
Executable file
13
debian/rules
vendored
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
%:
|
||||
dh ${@}
|
||||
|
||||
override_dh_auto_install:
|
||||
dh_auto_install -- DESTDIR=$(CURDIR)/debian/lzd
|
||||
|
||||
override_dh_strip:
|
||||
dh_strip --dbg-package=lzd-dbg
|
||||
|
||||
override_dh_builddeb:
|
||||
dh_builddeb -- -Zxz
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
1
debian/source/options
vendored
Normal file
1
debian/source/options
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
compression = xz
|
Loading…
Add table
Reference in a new issue