From a70b350520a41a1dec0583c7514544baecb12ed9 Mon Sep 17 00:00:00 2001 From: Romuald Conty Date: Wed, 18 May 2011 11:47:50 +0000 Subject: [PATCH] import debian files --- debian/README.Debian | 6 +++++ debian/README.source | 9 ++++++++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 41 ++++++++++++++++++++++++++++++++++ debian/copyright | 23 +++++++++++++++++++ debian/libfreefare-bin.install | 2 ++ debian/libfreefare-dev.install | 3 +++ debian/libfreefare-doc.install | 1 + debian/libfreefare0.install | 1 + debian/rules | 21 +++++++++++++++++ debian/source/format | 1 + 12 files changed, 114 insertions(+) create mode 100644 debian/README.Debian create mode 100644 debian/README.source create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/libfreefare-bin.install create mode 100644 debian/libfreefare-dev.install create mode 100644 debian/libfreefare-doc.install create mode 100644 debian/libfreefare0.install create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..363989e --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,6 @@ +libfreefare for Debian +---------------------- + + + + -- neomilium Wed, 18 May 2011 12:20:45 +0200 diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 0000000..ac395f9 --- /dev/null +++ b/debian/README.source @@ -0,0 +1,9 @@ +libfreefare for Debian +---------------------- + + + + + + diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..928dfd9 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +libfreefare (0.3.1-0) unstable; urgency=low + + * Initial debian package release + + -- Romuald Conty Wed, 18 May 2011 12:42:42 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..363de20 --- /dev/null +++ b/debian/control @@ -0,0 +1,41 @@ +Source: libfreefare +Section: libs +Priority: extra +Maintainer: Romuald Conty +Build-Depends: debhelper (>= 7), autotools-dev, libnfc-dev (>=1.5.0) +Standards-Version: 3.9.1 +Homepage: http://code.google.com/p/nfc-tools/wiki/libfreefare +#Vcs-Svn: http://nfc-tools.googlecode.com/svn/trunk/libfreefare +#Vcs-Browser: http://code.google.com/p/nfc-tools/source/browse/#svn/trunk/libfreefare + +Package: libfreefare0 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libnfc2 +Description: MIFARE card manipulations library + The libfreefare project aims to provide a convenient API for MIFARE + card manipulations. + +Package: libfreefare-dev +Section: libdevel +Architecture: any +Depends: ${misc:Depends}, libfreefare0 (= ${binary:Version}), libnfc-dev +Description: MIFARE card manipulations library (development files) + The libfreefare project aims to provide a convenient API for MIFARE + card manipulations. + +Package: libfreefare-bin +Section: utils +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libfreefare0 (>= ${binary:Version}) +Description: MIFARE card manipulations binaries + Some binaries are provided with libfreefare useful for development + purposes. + +Package: libfreefare-doc +Architecture: all +Description: documentation for libfreefare + The libfreefare project aims to provide a convenient API for MIFARE + card manipulations. + + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..e26dac9 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,23 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: libfreefare +Source: http://code.google.com/p/nfc-tools/wiki/libfreefare + +Files: * +Copyright: 2010-2011, Romain Tartière , Romuald Conty +License: LGPL-3 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License version 3 + as published by the Free Software Foundation + . + This program 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 . + . + On Debian GNU/Linux systems, the complete text of the GNU General + Public License, version 3, can be found in the file + /usr/share/common-licenses/LGPL-3. + diff --git a/debian/libfreefare-bin.install b/debian/libfreefare-bin.install new file mode 100644 index 0000000..5283d17 --- /dev/null +++ b/debian/libfreefare-bin.install @@ -0,0 +1,2 @@ +debian/tmp/usr/bin/mifare-classic* +debian/tmp/usr/bin/mifare-desfire* diff --git a/debian/libfreefare-dev.install b/debian/libfreefare-dev.install new file mode 100644 index 0000000..ba6930e --- /dev/null +++ b/debian/libfreefare-dev.install @@ -0,0 +1,3 @@ +debian/tmp/usr/include/freefare.h +debian/tmp/usr/lib/libfreefare.{a,la,so} +debian/tmp/usr/lib/pkgconfig/libfreefare.pc diff --git a/debian/libfreefare-doc.install b/debian/libfreefare-doc.install new file mode 100644 index 0000000..7c72677 --- /dev/null +++ b/debian/libfreefare-doc.install @@ -0,0 +1 @@ +debian/tmp/usr/share/man/man3/* diff --git a/debian/libfreefare0.install b/debian/libfreefare0.install new file mode 100644 index 0000000..50694d8 --- /dev/null +++ b/debian/libfreefare0.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libfreefare.so.* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c30bbdb --- /dev/null +++ b/debian/rules @@ -0,0 +1,21 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. +# +# Modified to make a template file for a multi-binary package with separated +# build-arch and build-indep targets by Bill Allombert 2001 + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)