diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4f2be76 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +libmodbus (2.0.0-1) stable; urgency=low + + * Initial release. + + -- Stéphane Raimbault Wed, 14 May 2008 22:30:53 +0200 + diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..de9e984 --- /dev/null +++ b/debian/control @@ -0,0 +1,37 @@ +Source: libmodbus +Priority: extra +Maintainer: Stéphane Raimbault +Standards-Version: 3.7.3 +Section: libs +Build-Depends: debhelper (>= 5.0.37.2), + cdbs (>= 0.4.43), + autotools-dev, + dpkg-dev (>= 1.13.19) + +Package: libmodbus +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: A Modbus library in C, which supports RTU communication over a serial line or a TCP link. + A Modbus library for Linux (and OSX) wrote in C and which supports + RTU communication over a serial line or a TCP link. Clean and fast! + Supports controling an RTU and being an RTU. + . + This package contains the shared library. + +Package: libmodbus-dev +Section: libdevel +Architecture: any +Depends: libmodbus (= ${binary:Version}), + ${shlibs:Depends}, + ${misc:Depends} +Description: A Modbus library in C, which supports RTU communication over a serial line or a TCP link. + A Modbus library for Linux (and OSX) wrote in C and which supports + RTU communication over a serial line or a TCP link. Clean and fast! + Supports controling an RTU and being an RTU. + . + This package contains the development files. + + + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..9fd7788 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by Stéphane Raimbault on +Wed, 14 May 2008 22:30:53 +0200 + +It was downloaded from + +Upstream Author(s): + + Stéphane Raimbault + +Copyright: + + + +License: + + 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 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser Public License + along with this program. If not, see + . + +The Debian packaging is (C) 2008, Stéphane Raimbault and is licensed under the LGPL version 3, see `/usr/share/common-licenses/LGPL-3'. + + diff --git a/debian/libmodbus-dev.install b/debian/libmodbus-dev.install new file mode 100644 index 0000000..101effb --- /dev/null +++ b/debian/libmodbus-dev.install @@ -0,0 +1,3 @@ +debian/tmp/usr/include/modbus/* +debian/tmp/usr/lib/libmodbus.so +debian/tmp/usr/lib/pkgconfig/modbus.pc diff --git a/debian/libmodbus.install b/debian/libmodbus.install new file mode 100644 index 0000000..3ca6930 --- /dev/null +++ b/debian/libmodbus.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libmodbus.so.* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f738c4d --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk