commit
7aea085d9c
@ -0,0 +1,5 @@
|
||||
lxqt-archiver (0.0.96-0ubuntu1) UNRELEASED; urgency=medium
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- Simon Quigley <tsimonq2@ubuntu.com> Mon, 09 Jul 2018 18:45:03 -0500
|
@ -0,0 +1 @@
|
||||
11
|
@ -0,0 +1,59 @@
|
||||
Source: lxqt-archiver
|
||||
Section: x11
|
||||
Priority: optional
|
||||
Maintainer: Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||
Uploaders: Simon Quigley <tsimonq2@ubuntu.com>
|
||||
Build-Depends: cmake,
|
||||
debhelper (>= 11),
|
||||
libjson-glib-dev,
|
||||
libmagic-dev,
|
||||
lxqt-build-tools
|
||||
Standards-Version: 4.1.5
|
||||
Homepage: https://github.com/lxqt/lxqt-archiver
|
||||
Vcs-Browser: https://phab.lubuntu.me/source/lxqt-archiver/
|
||||
Vcs-Git: https://phab.lubuntu.me/source/lxqt-archiver.git
|
||||
|
||||
Package: lxqt-archiver
|
||||
Architecture: any
|
||||
Depends: bzip2,
|
||||
p7zip-full,
|
||||
unzip,
|
||||
xz-utils,
|
||||
zip,
|
||||
${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Recommends: lxqt-archiver-l10n
|
||||
Suggests: gvfs
|
||||
Description: Archive Manager for LXQt
|
||||
LXQt Archiver is an archive manager for the LXQt environment.
|
||||
It allows you to:
|
||||
* Create and modify archives.
|
||||
* View the content of an archive.
|
||||
* View a file contained in an archive.
|
||||
* Extract files from the archive.
|
||||
.
|
||||
LXQt Archiver supports the following formats:
|
||||
* Tar (.tar) archives, including those compressed with
|
||||
gzip (.tar.gz, .tgz), bzip (.tar.bz, .tbz), bzip2 (.tar.bz2, .tbz2),
|
||||
compress (.tar.Z, .taz), lzip (.tar.lz, .tlz), lzop (.tar.lzo, .tzo),
|
||||
lzma (.tar.lzma) and xz (.tar.xz)
|
||||
* Zip archives (.zip)
|
||||
* Jar archives (.jar, .ear, .war)
|
||||
* 7z archives (.7z)
|
||||
* iso9660 CD images (.iso)
|
||||
* Lha archives (.lzh)
|
||||
* Single files compressed with gzip (.gz), bzip (.bz), bzip2 (.bz2),
|
||||
compress (.Z), lzip (.lz), lzop (.lzo), lzma (.lzma) and xz (.xz)
|
||||
.
|
||||
LXQt Archiver doesn't perform archive operations by itself, but relies on
|
||||
standard backend tools to accomplish this.
|
||||
.
|
||||
This package contains LXQt Archiver.
|
||||
|
||||
Package: lxqt-archiver-l10n
|
||||
Architecture: all
|
||||
Multi-Arch: foreign
|
||||
Section: localization
|
||||
Depends: qttranslations5-l10n, ${misc:Depends}
|
||||
Description: Language package for lxqt-archiver
|
||||
This package contains the l10n files needed by LXQt Archiver.
|
@ -0,0 +1,29 @@
|
||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: lxqt-archiver
|
||||
Source: https://github.com/lxqt/lxqt-archiver
|
||||
|
||||
Files: *
|
||||
Copyright: 2001-2012 The Free Software Foundation, Inc.
|
||||
2018 The LXQt team
|
||||
License: GPL-2+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2018 Lubuntu Developers <lubuntu-devel@lists.ubuntu.com>
|
||||
License: GPL-2+
|
||||
|
||||
License: GPL-2+
|
||||
This package is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
.
|
||||
This package 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. See the
|
||||
GNU General Public License for more details.
|
||||
.
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>
|
||||
.
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
@ -0,0 +1 @@
|
||||
usr/share/lxqt-archiver/translations/*.qm
|
@ -0,0 +1,4 @@
|
||||
usr/bin/lxqt-archiver
|
||||
usr/libexec/lxqt-archiver/isoinfo.sh
|
||||
usr/libexec/lxqt-archiver/rpm2cpio
|
||||
usr/share/applications/lxqt-archiver.desktop
|
@ -0,0 +1,17 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
export DH_VERBOSE = 1
|
||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all,-format
|
||||
export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
|
||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_missing:
|
||||
dh_missing --fail-missing
|
||||
|
||||
override_dh_auto_configure:
|
||||
dh_auto_configure -- \
|
||||
-DUPDATE_TRANSLATIONS=OFF \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
Loading…
Reference in new issue