initial debian $foo
This commit is contained in:
parent
bdcfbe4a8f
commit
59343a0633
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
screengrab-qt5 (1.95-1)unstable; urgency=low
|
||||
|
||||
* Initial packaging
|
||||
|
||||
-- Alf Gaida <agaida@siduction.org> Fri, 21 Nov 2014 21:45:06 +0100
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
@ -0,0 +1 @@
|
||||
9
|
32
debian/control
vendored
Normal file
32
debian/control
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
Source: screengrab
|
||||
Section: graphics
|
||||
Priority: optional
|
||||
Maintainer: LXQt Packaging Team <pkg-lxqt-devel@lists.alioth.debian.org>
|
||||
Uploaders:
|
||||
Alf Gaida <agaida@siduction.org>,
|
||||
ChangZhuo Chen (陳昌倬) <czchen@gmail.com>,
|
||||
Andrew Lee (李健秋) <ajqlee@debian.org>
|
||||
Build-Depends:
|
||||
debhelper (>= 9),
|
||||
cmake (>= 3.0.2),
|
||||
libkf5windowsystem-dev (>= 5.9),
|
||||
libx11-dev,
|
||||
libqxt-dev,
|
||||
libqt5x11extras5-dev (>= 5.3),
|
||||
libqt5xdg-dev (>= 1.2.0),
|
||||
pkg-config,
|
||||
qttools5-dev (>= 5.3),
|
||||
qttools5-dev-tools (>= 5.3),
|
||||
Standards-Version: 3.9.6
|
||||
Homepage: https://github.com/QtDesktop/screengrab
|
||||
Vcs-Git: git://anonscm.debian.org/pkg-lxqt/screengrab.git
|
||||
Vcs-Browser: http://anonscm.debian.org/cgit/pkg-lxqt/screengrab.git
|
||||
|
||||
Package: screengrab
|
||||
Architecture: any
|
||||
Depends:
|
||||
${shlibs:Depends},
|
||||
${misc:Depends}
|
||||
Description: Crossplatform tool for getting screenshots
|
||||
Screengrab working in Linux and Windows. The program uses Qt and is independent
|
||||
of any desktop environment.
|
58
debian/copyright
vendored
Normal file
58
debian/copyright
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: screengrab
|
||||
Source: https://github.com/QtDesktop/screengrab
|
||||
|
||||
Files: *
|
||||
Copyright: 2009-2015 Artem Galichkin <doomer3d@gmail.com>
|
||||
License: GPL-2.0+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2012-2015 Alf Gaida <agaida@siduction.org>
|
||||
2010-2013 Artem Galichkin <doomer3d@gmail.com>
|
||||
License: GPL-2.0+
|
||||
|
||||
Files: qkeysequencewidget/*
|
||||
Copyright: 2010 Artem Galichkin <doomer3d@gmail.com>
|
||||
License: BSD-3-Clause
|
||||
|
||||
License: GPL-2.0+
|
||||
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 <http://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".
|
||||
|
||||
License: BSD-3-Clause
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. Neither the name of the University nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
.
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HOLDERS OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2
debian/docs
vendored
Normal file
2
debian/docs
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
AUTHORS
|
||||
README.md
|
1
debian/install
vendored
Normal file
1
debian/install
vendored
Normal file
@ -0,0 +1 @@
|
||||
usr
|
13
debian/rules
vendored
Executable file
13
debian/rules
vendored
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/make -f
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
%:
|
||||
dh $@ --buildsystem=cmake --parallel
|
||||
|
||||
|
||||
override_dh_install:
|
||||
rm -f debian/screengrab/usr/share/doc/screengrab/LICENSE.txt
|
||||
dh_install
|
||||
|
||||
override_dh_makeshlibs:
|
||||
# do nothing
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
@ -0,0 +1 @@
|
||||
1.0
|
6
debian/source/include-binaries
vendored
Normal file
6
debian/source/include-binaries
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
localize/screengrab_de_DE.qm
|
||||
localize/screengrab_es_ES.qm
|
||||
localize/screengrab_it_IT.qm
|
||||
localize/screengrab_pt_BR.qm
|
||||
localize/screengrab_ru.qm
|
||||
localize/screengrab_uk_UA.qm
|
3
debian/source/options
vendored
Normal file
3
debian/source/options
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# dont put xyz in the tarball
|
||||
tar-ignore=.xyz
|
||||
tar-ignore=.gitignore
|
Loading…
x
Reference in New Issue
Block a user