Commit 1ced38d9790c694c54842f88c68cfc756314f684

Authored by Stéphane Raimbault
1 parent 2a4c5bec

Add Debian package files

debian/changelog 0 → 100644
  1 +libmodbus (2.0.0-1) stable; urgency=low
  2 +
  3 + * Initial release.
  4 +
  5 + -- Stéphane Raimbault <stephane.raimbault@gmail.com> Wed, 14 May 2008 22:30:53 +0200
  6 +
... ...
debian/control 0 → 100644
  1 +Source: libmodbus
  2 +Priority: extra
  3 +Maintainer: Stéphane Raimbault <stephane.raimbault@gmail.com>
  4 +Standards-Version: 3.7.3
  5 +Section: libs
  6 +Build-Depends: debhelper (>= 5.0.37.2),
  7 + cdbs (>= 0.4.43),
  8 + autotools-dev,
  9 + dpkg-dev (>= 1.13.19)
  10 +
  11 +Package: libmodbus
  12 +Section: libs
  13 +Architecture: any
  14 +Depends: ${shlibs:Depends},
  15 + ${misc:Depends}
  16 +Description: A Modbus library in C, which supports RTU communication over a serial line or a TCP link.
  17 + A Modbus library for Linux (and OSX) wrote in C and which supports
  18 + RTU communication over a serial line or a TCP link. Clean and fast!
  19 + Supports controling an RTU and being an RTU.
  20 + .
  21 + This package contains the shared library.
  22 +
  23 +Package: libmodbus-dev
  24 +Section: libdevel
  25 +Architecture: any
  26 +Depends: libmodbus (= ${binary:Version}),
  27 + ${shlibs:Depends},
  28 + ${misc:Depends}
  29 +Description: A Modbus library in C, which supports RTU communication over a serial line or a TCP link.
  30 + A Modbus library for Linux (and OSX) wrote in C and which supports
  31 + RTU communication over a serial line or a TCP link. Clean and fast!
  32 + Supports controling an RTU and being an RTU.
  33 + .
  34 + This package contains the development files.
  35 +
  36 +
  37 +
... ...
debian/copyright 0 → 100644
  1 +This package was debianized by Stéphane Raimbault <stephane.raimbault@gmail.com> on
  2 +Wed, 14 May 2008 22:30:53 +0200
  3 +
  4 +It was downloaded from <http://launchpad.net/libmodbus>
  5 +
  6 +Upstream Author(s):
  7 +
  8 + Stéphane Raimbault <stephane.raimbault@gmail.com>
  9 +
  10 +Copyright:
  11 +
  12 + <Copyright (C) 2001-2008 Stéphane Raimbault>
  13 +
  14 +License:
  15 +
  16 + This package is free software: you can redistribute it and/or
  17 + modify it under the terms of the GNU Lesser General Public
  18 + License as published by the Free Software Foundation; either
  19 + version 3 of the License, or (at your option) any later version.
  20 +
  21 + This package is distributed in the hope that it will be useful,
  22 + but WITHOUT ANY WARRANTY; without even the implied warranty of
  23 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  24 + Lesser General Public License for more details.
  25 +
  26 + You should have received a copy of the GNU Lesser Public License
  27 + along with this program. If not, see
  28 + <http://www.gnu.org/licenses/>.
  29 +
  30 +The Debian packaging is (C) 2008, Stéphane Raimbault <stephane.raimbault@gmail.com> and is licensed under the LGPL version 3, see `/usr/share/common-licenses/LGPL-3'.
  31 +
  32 +
... ...
debian/libmodbus-dev.install 0 → 100644
  1 +debian/tmp/usr/include/modbus/*
  2 +debian/tmp/usr/lib/libmodbus.so
  3 +debian/tmp/usr/lib/pkgconfig/modbus.pc
... ...
debian/libmodbus.install 0 → 100644
  1 +debian/tmp/usr/lib/libmodbus.so.*
... ...
debian/rules 0 → 100755
  1 +#!/usr/bin/make -f
  2 +include /usr/share/cdbs/1/rules/debhelper.mk
  3 +include /usr/share/cdbs/1/class/autotools.mk
... ...