Skip to content
Commits on Source (10)
.debhelper
*.log
*.substvars
debhelper-build-stamp
files
tmp
unarr-dev
unarr1
unarr README.source - Downloading the source tarball.
-----------------------------------------------------
The unarr project does not have any git tags defined at the time
of writing. As a result, uscan cannot download unarr sources.
......@@ -6,5 +9,3 @@ get-orig-source to create the source orig tarball. Besides
downloading, the target also handles upstream's DOS line endings.
The target is usually invoked as 'fakeroot debian/rules get-orig-source'.
Source: unarr
Maintainer: Debian GIS group <debian-gis@lists.debian.org>
Uploaders: Alec Leamas <leamas.alec@googlemail.com>
Section: misc
Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
Uploaders: Alec Leamas <leamas.alec@gmail.com>
Section: libs
Priority: optional
Build-Depends: debhelper (>= 11),
Build-Depends: debhelper (>= 9),
cmake,
libbz2-dev,
zlib1g-dev
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/debian-gis-team/unarr§
Vcs-Browser: https://salsa.debian.org/debian-gis-team/unarr
Vcs-Git: https://salsa.debian.org/debian-gis-team/unarr.git
Homepage: https://github.com/zeniko/unarr
Package: unarr-dev
Package: libunarr-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: unarr1 (= ${binary:Version}),
Depends: libunarr1 (= ${binary:Version}),
${misc:Depends}
Description: Decompression library for RAR, TAR, ZIP and 7z archives (runtime)
Description: Decompression library for RAR, TAR, ZIP and 7z archives (devel)
Development tools: headers and unversioned libraries
.
See unarr1 for more info.
unarr originated as a port of the RAR extraction features from
The Unarchiver project required for extracting images from comic
book archives (.cbr). It was written as an alternative to
libarchive which didn't have support for parsing filters or solid
compression at the time. .
Package: unarr1
Package: libunarr1
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends}
Description: Decompression library for RAR, TAR, ZIP and 7z archives (dev)
Description: Decompression library for RAR, TAR, ZIP and 7z archives (runtime)
unarr originated as a port of the RAR extraction features from
The Unarchiver project required for extracting images from comic
book archives (.cbr). It was written as an alternative to
libarchive which didn't have support for parsing filters or solid
compression at the time.
compression at the time. This package holds the runtime library.
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: unarr
Upstream-Contact: https://github.com/zeniko/unarr/issues
Source: https://github.com/zeniko/unarr.git
Source: https://github.com/zeniko/unarr
Files: *
Copyright: 2015, the unarr project authors (see AUTHORS file).
......@@ -25,7 +25,7 @@ Files: AUTHORS
lzmasdk/Ppmd8Dec.c
lzmasdk/Precomp.h
pkg-config.pc.cmake
Copyright:Simon Bünzli (zeniko at gmail.com, http://www.zeniko.ch/#SumatraPDF)
Copyright: Simon Bünzli <zeniko at gmail.com, http://www.zeniko.ch/#SumatraPDF>
License: LGPL-3
Files: debian/*
......@@ -42,8 +42,9 @@ License: LGPL-3
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
On Debian systems, the full text of the GNU Lesser General Public
License version 3 can be found in the file
`/usr/share/common-licenses/LGPL-3'.
License: GPL-2+
This program is free software; you can redistribute it and/or modify
......@@ -54,5 +55,3 @@ License: GPL-2+
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.
Otherwise, refer to the online version at GNU website
`https://gnu.org/licenses/old-licenses/gpl-1.0.txt`.
......@@ -5,10 +5,6 @@ include /usr/share/dpkg/pkg-info.mk
%:
dh $@ --buildsystem cmake --parallel
override_dh_auto_clean:
dh_clean
rm -rf obj-*
override_dh_auto_test:
echo "No tests available."
......