From b07786d60f2cc0004b70270daf3b36abaaea3cb9 Mon Sep 17 00:00:00 2001 From: Florent Date: Fri, 31 May 2013 11:06:28 +0200 Subject: [PATCH] debian package --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 12 ++++++++++++ debian/rules | 10 ++++++++++ debian/source/format | 1 + 5 files changed, 29 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..9b0210e --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +libstrophe-git (20130531) UNRELEASED; urgency=low + + * Initial release. (Closes: #XXXXXX) + + -- Florent Peterschmitt Fri, 31 May 2013 10:33:07 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..86b64a0 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: libstrophe-git +Maintainer: Florent Peterschmitt +Section: misc +Priority: optional +Standards-Version: 3.9.2 +Build-Depends: debhelper (>=8), libexpat1-dev, libexpat1, automake, autoconf, pkg-config, check + +Package: libstrophe-git +Provides: libstrophe +Depends: ${shlibs:Depends}, ${misc:Depends}, libexpat1 +Description: A simple, lightweight C library for writing XMPP clients +Architecture: any diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..7f942b9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_configure: + ./bootstrap.sh + ./configure + +override_dh_auto_install: + $(MAKE) DESTDIR=$$(pwd)/debian/libstrophe-git prefix=/usr install 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)