Commit 0d2c387a664dead37baf046a7cdd7389572bd699

Authored by Perry Werneck
1 parent 7a269106
Exists in master and in 1 other branch develop

Updating version on control.debian.

Showing 2 changed files with 30 additions and 0 deletions   Show diff stats
configure.ac
... ... @@ -143,6 +143,8 @@ case "$host" in
143 143  
144 144 app_cv_static='no'
145 145  
  146 + AC_CONFIG_FILES(debian/control)
  147 +
146 148 esac
147 149  
148 150 AC_SUBST(OSNAME,$app_cv_osname)
... ...
debian/control.in 0 → 100644
... ... @@ -0,0 +1,28 @@
  1 +Source: lib3270
  2 +Section: unknown
  3 +Priority: optional
  4 +Maintainer: Perry Werneck <perry.werneck@gmail.com>
  5 +Build-Depends: debhelper (>= 7), autotools-dev, autoconf, automake, pkg-config, gettext, libssl-dev, libcurl4-openssl-dev
  6 +
  7 +Package: lib3270
  8 +Architecture: any
  9 +Section: libs
  10 +Depends: ${misc:Depends}, ${shlibs:Depends}
  11 +Provides: lib3270 (= ${binary:Version}), @PACKAGE_NAME@ (= @PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@)
  12 +Description: TN3270 Access library.
  13 + TN3270 access library originally designed as part of the pw3270 application.
  14 +
  15 +Package: lib3270-dev
  16 +Architecture: any
  17 +Provides: lib3270-dev (= ${binary:Version})
  18 +Section: libdevel
  19 +Depends: ${misc:Depends}, pkg-config, lib3270 (= ${binary:Version})
  20 +Description: TN3270 Access library development files.
  21 + TN3270 access library originally designed as part of the pw3270 application.
  22 +
  23 +Package: lib3270-dbg
  24 +Architecture: any
  25 +Depends: lib3270 (= ${binary:Version})
  26 +Description: Debugging symbols for lib3270
  27 + This package contains the debugging symbols for lib3270.
  28 +
... ...