parent
2ff0396da5
commit
218af2518e
@ -0,0 +1,5 @@
|
||||
libsysstat (0.1.0-1) unstable; urgency=low
|
||||
|
||||
* Initial release (Closes: )
|
||||
|
||||
-- Alf Gaida <agaida@siduction.org> Mon, 24 Feb 2014 23:41:30 +0100
|
@ -0,0 +1 @@
|
||||
9
|
@ -0,0 +1,51 @@
|
||||
Source: libsysstat
|
||||
Section: libs
|
||||
Priority: optional
|
||||
Maintainer: Alf Gaida <agaida@siduction.org>
|
||||
Build-Depends:
|
||||
cmake,
|
||||
debhelper (>= 9),
|
||||
pkg-config,
|
||||
libqt5xdg-dev (>= 0.5.3),
|
||||
qttools5-dev (>= 5.3.0),
|
||||
qttools5-dev-tools (>= 5.3.0),
|
||||
Standards-Version: 3.9.5
|
||||
Homepage: https://github.com/lxde/libsysstat
|
||||
#Vcs-Git: git://anonscm.debian.org/collab-maint/libsysstat.git
|
||||
#Vcs-Browser: http://anonscm.debian.org/?p=collab-maint/libsysstat.git;a=summary
|
||||
|
||||
Package: libsysstat-qt5-0
|
||||
Architecture: any
|
||||
Multi-Arch: same
|
||||
Depends:
|
||||
${shlibs:Depends},
|
||||
${misc:Depends},
|
||||
Description: Qt-based interface to system statistics
|
||||
SysStat is a Qt-based interface to system statistics.
|
||||
.
|
||||
This package contain the shared library.
|
||||
|
||||
Package: libsysstat-qt5-0-dev
|
||||
Architecture: any
|
||||
Section: libdevel
|
||||
Depends:
|
||||
${misc:Depends},
|
||||
libsysstat-qt5-0 (= ${binary:Version}),
|
||||
Description: Qt-based interface to system statistics (dev)
|
||||
SysStat is a Qt-based interface to system statistics.
|
||||
.
|
||||
This package contain the development files.
|
||||
|
||||
Package: libsysstat-qt5-0-dbg
|
||||
Architecture: any
|
||||
Multi-arch: same
|
||||
Section: debug
|
||||
Priority: extra
|
||||
Depends:
|
||||
${misc:Depends},
|
||||
libsysstat-qt5-0 (= ${binary:Version}),
|
||||
Description: Qt-based interface to system statistics (debug)
|
||||
SysStat is a Qt-based interface to system statistics.
|
||||
.
|
||||
This package contain the debugging symbols.
|
||||
|
@ -0,0 +1,46 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: libsysstat
|
||||
Source: https://github.com/lxde/libsysstat
|
||||
|
||||
Files: *
|
||||
Copyright: 2012-2014 LXQt team
|
||||
2012 Razor team
|
||||
License: GPL-2.0+ and LGPL-2.1+
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2014 Alf Gaida <agaida@siduction.org>
|
||||
License: LGPL-2.1+
|
||||
|
||||
License: LGPL-2.1+
|
||||
This package is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 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
|
||||
Lesser 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 Lesser General
|
||||
Public License can be found in "/usr/share/common-licenses/LGPL-2.1".
|
||||
|
||||
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".
|
@ -0,0 +1 @@
|
||||
AUTHORS
|
@ -0,0 +1,7 @@
|
||||
usr/include/sysstat-qt5/
|
||||
usr/lib/*/libsysstat-qt5.so
|
||||
|
||||
usr/share/cmake/sysstat-qt5/sysstat-qt5-config.cmake
|
||||
usr/share/cmake/sysstat-qt5/sysstat_use.cmake
|
||||
usr/lib/*/pkgconfig/sysstat-qt5.pc
|
||||
|
@ -0,0 +1,3 @@
|
||||
usr/lib/*/libsysstat-qt5.so.*
|
||||
#usr/share/lxqt/translations/*.qm
|
||||
|
@ -0,0 +1,20 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
export DH_VERBOSE=1
|
||||
export USE_QT5=1
|
||||
|
||||
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
||||
|
||||
|
||||
%:
|
||||
dh ${@} --buildsystem cmake --parallel
|
||||
|
||||
|
||||
override_dh_install:
|
||||
dh_install --list-missing --fail-missing
|
||||
|
||||
override_dh_auto_configure:
|
||||
dh_auto_configure -- -DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"
|
||||
|
||||
override_dh_strip:
|
||||
dh_strip --dbg-package=libsysstat-qt5-0-dbg
|
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
@ -0,0 +1,2 @@
|
||||
version=3
|
||||
https://github.com/lxde/libsysstat/releases .*/([\d\.]+).tar.gz
|
Loading…
Reference in new issue