diff options
author | dequis <dx@dxzone.com.ar> | 2015-04-29 01:59:49 -0300 |
---|---|---|
committer | jgeboski <jgeboski@gmail.com> | 2015-04-29 20:23:58 -0400 |
commit | ea5d6af3cecd01222172324d320718ff629e3a7f (patch) | |
tree | d29686b4876519c0d2d41fd2150cdb1b727865a6 | |
parent | d6062e771b964679c30d5a1f6c8411868fb22cd2 (diff) | |
download | bitlbee-facebook-ea5d6af3cecd01222172324d320718ff629e3a7f.tar.gz bitlbee-facebook-ea5d6af3cecd01222172324d320718ff629e3a7f.tar.bz2 bitlbee-facebook-ea5d6af3cecd01222172324d320718ff629e3a7f.tar.xz |
Add debian crap
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 11 | ||||
-rw-r--r-- | debian/copyright | 27 | ||||
-rwxr-xr-x | debian/rules | 4 |
6 files changed, 49 insertions, 0 deletions
@@ -10,6 +10,7 @@ build-aux config.log config.status configure +debian INSTALL libtool libtool.m4 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4629695 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +bitlbee-facebook (0.1-1) UNRELEASED; urgency=medium + + * Initial debian packaging test. + + -- dequis <dx@dxzone.com.ar> Wed, 29 Apr 2015 01:20:07 -0300 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..0cc7e84 --- /dev/null +++ b/debian/control @@ -0,0 +1,11 @@ +Source: bitlbee-facebook +Maintainer: jgeboski <jgeboski@gmail.com> +Section: misc +Priority: optional +Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 9), libglib2.0-dev (>= 2.32), bitlbee-dev (>= 3.2.2), zlib1g-dev + +Package: bitlbee-facebook +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, bitlbee (>= 3.2.2) +Description: Facebook protocol plugin for BitlBee diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..169f043 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,27 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: bitlbee-facebook +Source: https://github.com/jgeboski/bitlbee-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 |