debian/ubuntu packages

This commit is contained in:
taipanromania 2009-04-11 21:15:46 +00:00
parent 1649ad0056
commit 8cba0252e3
9 changed files with 105 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
zint (2.1.3) unstable; urgency=low
* Initial release
-- BogDan Vatra <bogdan@licentia.eu> Sat, 11 Apr 2009 23:45:53 +0300

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
7

41
debian/control vendored Normal file
View File

@ -0,0 +1,41 @@
Source: zint
Section: libs
Priority: extra
Maintainer: BogDan Vatra <bogdan@licentia.eu>
Build-Depends: cdbs, debhelper (>= 7), cmake
Standards-Version: 3.8.1
Homepage: http://www.zint.org.uk/
Package: libzint
Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Zint is an Open Source barcode encoding and image generating library for Linux.
It currently features:
Over 50 symbologies including many not available in any other open source package.
Unicode translation for symbologies which support Latin-1 and Shift-JIS character sets.
Full GS1 support including data verification and automated insertion of FNC1 characters.
Support for encoding binary data including NULL (ASCII 0) characters.
Health Industry Barcode (HIBC) encoding capabilities.
Output in PNG, EPS and SVG formats with user adjustable sizes and colours.
Verification stage for SBN, ISBN and ISBN-13 data.
Package: libzint-dev
Section: libs
Architecture: any
Depends: libzint (= ${binary:Version})
Description: Zint development files.
Package: libqzint
Section: libs
Architecture: any
Depends: libzint (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
Description: Qt wrapper over Zint library
Package: libqzint-dev
Section: libs
Architecture: any
Depends: libqzint (= ${binary:Version}), libzint-dev (= ${source:Version})
Description: QZint development files.

44
debian/copyright vendored Normal file
View File

@ -0,0 +1,44 @@
This package was debianized by:
BogDan Vatra <bogdan@licentia.eu> on Sat, 11 Apr 2009 23:45:53 +0300
It was downloaded from:
<url://example.com>
Upstream Author(s):
<put author's name and email here>
<likewise for another author>
Copyright:
<Copyright (C) YYYY Firstname Lastname>
<likewise for another author>
License:
This program 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 3 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 3 can be found in `/usr/share/common-licenses/GPL-3'.
The Debian packaging is:
Copyright (C) 2009 BogDan Vatra <bogdan@licentia.eu>
and is licensed under the GPL version 3, see above.
# Please also look if there are files or directories which have a
# different copyright/license attached and list them here.

2
debian/libqzint-dev.install vendored Normal file
View File

@ -0,0 +1,2 @@
usr/include/qzint.h
usr/lib/libQZint.so

1
debian/libqzint.install vendored Normal file
View File

@ -0,0 +1 @@
usr/lib/libQZint.so.*

3
debian/libzint-dev.install vendored Normal file
View File

@ -0,0 +1,3 @@
usr/include/zint.h
usr/lib/libzint.so
usr/share/cmake-2.6/Modules/FindZint.cmake

1
debian/libzint.install vendored Normal file
View File

@ -0,0 +1 @@
usr/lib/libzint.so.*

7
debian/rules vendored Executable file
View 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
# Add here any variable or target overrides you need.