Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dequis/purple-facebook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgeboski <jgeboski@gmail.com>2015-07-19 18:13:17 +0300
committerjgeboski <jgeboski@gmail.com>2015-07-19 18:29:05 +0300
commit982abb67e3a492fd1b9a4e5aee675606f92910a0 (patch)
tree33cb073cc21ccb8d485e72e1405c139cb9d60ca4
parent81edfb44b06d7a37b1538e5759abd65b1a1a0e46 (diff)
debian: initial debian support
-rw-r--r--.gitignore1
-rw-r--r--Makefile.am1
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control11
-rw-r--r--debian/copyright27
-rwxr-xr-xdebian/rules4
7 files changed, 50 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index eb04ac6..a632a29 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,7 @@ build-aux
config.log
config.status
configure
+debian
include
INSTALL
libtool
diff --git a/Makefile.am b/Makefile.am
index a519799..9f2a561 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,6 +3,7 @@ SUBDIRS = pidgin/libpurple/protocols/facebook
EXTRA_DIST = \
autogen.sh \
+ debian \
include \
Makefile.mingw \
MANIFEST_PIDGIN \
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..d68cd2f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+purple-facebook (0.0.0-1) UNRELEASED; urgency=medium
+
+ * Initial debian support.
+
+ -- jgeboski <jgeboski@gmail.com> Sun, 19 Jul 2015 11:10:13 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..3568db7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,11 @@
+Source: purple-facebook
+Maintainer: jgeboski <jgeboski@gmail.com>
+Section: misc
+Priority: optional
+Standards-Version: 3.9.2
+Build-Depends: debhelper (>= 9), libglib2.0-dev (>= 2.32), libjson-glib-dev, libpurple-dev, zlib1g-dev
+
+Package: purple-facebook
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, libpurple0, libjson-glib
+Description: Facebook protocol plugin for libpurple
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..d22d7c0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: purple-facebook
+Source: https://github.com/jgeboski/purple-facebook
+
+Files: *
+Copyright: Copyright 2014-2015 James Geboski <jgeboski@gmail.com>
+License: GPL-2+
+ This program is free software; you can redistribute it
+ and/or modify it under the terms of the GNU General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later
+ version.
+ .
+ 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 package; if not, write to the Free
+ Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ Boston, MA 02110-1301 USA
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..dd9063b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with autoreconf