summaryrefslogtreecommitdiffstats
path: root/unicode/packaging/debian
diff options
context:
space:
mode:
Diffstat (limited to 'unicode/packaging/debian')
-rw-r--r--unicode/packaging/debian/.gitignore1
-rw-r--r--unicode/packaging/debian/changelog.in5
-rw-r--r--unicode/packaging/debian/control29
-rw-r--r--unicode/packaging/debian/copyright25
-rw-r--r--unicode/packaging/debian/libcourier-unicode-dev.install6
-rw-r--r--unicode/packaging/debian/libcourier-unicode-dev.lintian-overrides1
-rw-r--r--unicode/packaging/debian/libcourier-unicode.install1
-rwxr-xr-xunicode/packaging/debian/rules7
-rw-r--r--unicode/packaging/debian/source/format1
9 files changed, 76 insertions, 0 deletions
diff --git a/unicode/packaging/debian/.gitignore b/unicode/packaging/debian/.gitignore
new file mode 100644
index 0000000..8132460
--- /dev/null
+++ b/unicode/packaging/debian/.gitignore
@@ -0,0 +1 @@
+/changelog
diff --git a/unicode/packaging/debian/changelog.in b/unicode/packaging/debian/changelog.in
new file mode 100644
index 0000000..58c9d38
--- /dev/null
+++ b/unicode/packaging/debian/changelog.in
@@ -0,0 +1,5 @@
+courier-unicode (@VERSION@-100) devel; urgency=medium
+
+ * Upstream release
+
+ -- Sam Varshavchik <mrsam@courier-mta.com> @DATE@
diff --git a/unicode/packaging/debian/control b/unicode/packaging/debian/control
new file mode 100644
index 0000000..5e7ca51
--- /dev/null
+++ b/unicode/packaging/debian/control
@@ -0,0 +1,29 @@
+Source: courier-unicode
+Priority: optional
+Maintainer: Sam Varshavchik <mrsam@courier-mta.com>
+Build-Depends: debhelper-compat (= 12), gcc%DEBGCC%, g++%DEBGCC%
+Standards-Version: 4.4.1
+Section: contrib/libs
+Homepage: https://www.courier-mta.org/unicode/
+Rules-Requires-Root: no
+
+Package: libcourier-unicode-dev
+Section: contrib/libdevel
+Architecture: any
+Depends: libcourier-unicode%SOVERSION% (= ${binary:Version}), ${misc:Depends}
+Description: Courier Unicode Library (header files and development libraries)
+ This package contains development files for the Courier Unicode Library.
+ Install this package if you want to develop applications that uses this
+ unicode library.
+
+Package: libcourier-unicode%SOVERSION%
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Courier Unicode Library
+ This library implements several algorithms related to the Unicode
+ Standard.
+ -
+ This package installs only the run-time libraries needed by applications that
+ use this library. Install the "courier-unicode-dev" package if you want
+ to develop new applications using this library.
+
diff --git a/unicode/packaging/debian/copyright b/unicode/packaging/debian/copyright
new file mode 100644
index 0000000..7aa7ab2
--- /dev/null
+++ b/unicode/packaging/debian/copyright
@@ -0,0 +1,25 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Courier Mail Server
+Upstream-Contact: https://www.courier-mta.org/unicode/
+Source: https://www.courier-mta.org/unicode/
+
+Files: *
+Copyright: 2000-2021 Double Precision Inc
+License: GPL-3.0
+
+License: GPL-3.0
+ 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 <https://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".
diff --git a/unicode/packaging/debian/libcourier-unicode-dev.install b/unicode/packaging/debian/libcourier-unicode-dev.install
new file mode 100644
index 0000000..1175cad
--- /dev/null
+++ b/unicode/packaging/debian/libcourier-unicode-dev.install
@@ -0,0 +1,6 @@
+usr/lib/*/*.so
+usr/lib/*/*.a
+usr/lib/*/*.la
+usr/share/aclocal/*
+usr/share/man/*/*
+usr/include/*
diff --git a/unicode/packaging/debian/libcourier-unicode-dev.lintian-overrides b/unicode/packaging/debian/libcourier-unicode-dev.lintian-overrides
new file mode 100644
index 0000000..149c7f5
--- /dev/null
+++ b/unicode/packaging/debian/libcourier-unicode-dev.lintian-overrides
@@ -0,0 +1 @@
+manpage-has-errors-from-man usr/share/man/man3/*
diff --git a/unicode/packaging/debian/libcourier-unicode.install b/unicode/packaging/debian/libcourier-unicode.install
new file mode 100644
index 0000000..3de3b10
--- /dev/null
+++ b/unicode/packaging/debian/libcourier-unicode.install
@@ -0,0 +1 @@
+usr/lib/*/*.so.*
diff --git a/unicode/packaging/debian/rules b/unicode/packaging/debian/rules
new file mode 100755
index 0000000..1258b41
--- /dev/null
+++ b/unicode/packaging/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+export CXX=g++%DEBGCC%
+export CC=gcc%DEBGCC%
+
+%:
+ dh $@
diff --git a/unicode/packaging/debian/source/format b/unicode/packaging/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/unicode/packaging/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)