fix: README -> README.md
This commit is contained in:
parent
43e68af625
commit
99b0a6292c
756 changed files with 323753 additions and 71 deletions
10
ta6ob/lz4/contrib/debian/changelog
Normal file
10
ta6ob/lz4/contrib/debian/changelog
Normal file
|
@ -0,0 +1,10 @@
|
|||
liblz4 (1.7.2) unstable; urgency=low
|
||||
|
||||
* Changed : moved to versioning; package, cli and library have same version number
|
||||
* Improved: Small decompression speed boost (+4%)
|
||||
* Improved: Performance on ARMv6 and ARMv7
|
||||
* Added : Debianization, by Evgeniy Polyakov
|
||||
* Makefile: Generates object files (*.o) for faster (re)compilation on low power systems
|
||||
* Fix : cli : crash on some invalid inputs
|
||||
|
||||
-- Yann Collet <Cyan4973@github.com> Sun, 28 Jun 2015 01:00:00 +0000
|
1
ta6ob/lz4/contrib/debian/compat
Normal file
1
ta6ob/lz4/contrib/debian/compat
Normal file
|
@ -0,0 +1 @@
|
|||
7
|
23
ta6ob/lz4/contrib/debian/control
Normal file
23
ta6ob/lz4/contrib/debian/control
Normal file
|
@ -0,0 +1,23 @@
|
|||
Source: liblz4
|
||||
Section: devel
|
||||
Priority: optional
|
||||
Maintainer: Evgeniy Polyakov <zbr@ioremap.net>
|
||||
Build-Depends:
|
||||
cmake (>= 2.6),
|
||||
debhelper (>= 7.0.50~),
|
||||
cdbs
|
||||
Standards-Version: 3.8.0
|
||||
Homepage: http://www.lz4.org/
|
||||
Vcs-Git: git://github.com/lz4/lz4.git
|
||||
Vcs-Browser: https://github.com/lz4/lz4
|
||||
|
||||
Package: liblz4
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Extremely Fast Compression algorithm http://www.lz4.org
|
||||
|
||||
Package: liblz4-dev
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||
Description: Extremely Fast Compression algorithm http://www.lz4.org
|
||||
Development files.
|
9
ta6ob/lz4/contrib/debian/copyright
Normal file
9
ta6ob/lz4/contrib/debian/copyright
Normal file
|
@ -0,0 +1,9 @@
|
|||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: liblz4
|
||||
Upstream-Contact: Yann Collet <Cyan4973@github.com>
|
||||
Source: https://github.com/lz4/lz4
|
||||
|
||||
Files: *
|
||||
Copyright: (C) 2011-2020 Yann Collet
|
||||
License: GPL-2+
|
||||
The full text of license: https://github.com/lz4/lz4/blob/dev/lib/LICENSE
|
1
ta6ob/lz4/contrib/debian/dirs
Normal file
1
ta6ob/lz4/contrib/debian/dirs
Normal file
|
@ -0,0 +1 @@
|
|||
usr/bin
|
0
ta6ob/lz4/contrib/debian/docs
Normal file
0
ta6ob/lz4/contrib/debian/docs
Normal file
2
ta6ob/lz4/contrib/debian/liblz4-dev.install
Normal file
2
ta6ob/lz4/contrib/debian/liblz4-dev.install
Normal file
|
@ -0,0 +1,2 @@
|
|||
usr/include/lz4*
|
||||
usr/lib/liblz4.so
|
2
ta6ob/lz4/contrib/debian/liblz4.install
Normal file
2
ta6ob/lz4/contrib/debian/liblz4.install
Normal file
|
@ -0,0 +1,2 @@
|
|||
usr/lib/liblz4.so.*
|
||||
usr/bin/*
|
7
ta6ob/lz4/contrib/debian/rules
Executable file
7
ta6ob/lz4/contrib/debian/rules
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/cmake.mk
|
||||
|
||||
|
||||
DEB_CMAKE_EXTRA_FLAGS := -DCMAKE_BUILD_TYPE=RelWithDebInfo ../../build/cmake
|
Reference in a new issue