added deb deployment
This commit is contained in:
parent
746f3f4a89
commit
5e306e0dd8
13 changed files with 11636 additions and 15 deletions
15
Linux/deploy/debian/changelog
Normal file
15
Linux/deploy/debian/changelog
Normal file
|
@ -0,0 +1,15 @@
|
|||
bungloo (2.0.0) quantal; urgency=low
|
||||
|
||||
[ Jeena Paradies ]
|
||||
* Changed to one window
|
||||
* Added search (skate.io)
|
||||
* Added log out
|
||||
|
||||
-- Jeena <spam@jeenaparadies.net> Tue, 26 Mar 2013 21:50:00 +0100
|
||||
|
||||
bungloo (1.2.0) quantal; urgency=low
|
||||
|
||||
[ Jeena Paradies ]
|
||||
* Initial release.
|
||||
|
||||
-- Jeena <spam@jeenaparadies.net> Tue, 05 Mar 2013 17:57:47 +0100
|
1
Linux/deploy/debian/compat
Normal file
1
Linux/deploy/debian/compat
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
15
Linux/deploy/debian/control
Normal file
15
Linux/deploy/debian/control
Normal file
|
@ -0,0 +1,15 @@
|
|||
Source: bungloo
|
||||
Section: Miscellaneous
|
||||
Priority: optional
|
||||
Maintainer: Jeena Paradies <spam@jeenaparadies.net>
|
||||
Build-Depends: debhelper (>=7.0.50~), python-support (>= 0.6), cdbs (>= 0.4.49), python-all-dev
|
||||
Standards-Version: 3.9.4
|
||||
|
||||
Package: bungloo
|
||||
Architecture: all
|
||||
Homepage: http://jabs.nu/bungloo
|
||||
Depends: ${misc:Depends}, ${python:Depends}, python-qt4
|
||||
Provides: tent
|
||||
Description: A desktop Tent client
|
||||
This desktop Tent client makes it possible to use the Tent protocol. More
|
||||
information about this protocol can be found at https://tent.io
|
17
Linux/deploy/debian/copyright
Normal file
17
Linux/deploy/debian/copyright
Normal file
|
@ -0,0 +1,17 @@
|
|||
This package was debianized by Jeena Paradies (jeena) on Tue, 5 Mar 2013 18:38
|
||||
|
||||
License: BSD
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
- Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
- Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
- Neither the name of Bungloo nor the names of its contributors may
|
||||
be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License can be found in `/usr/share/common-licenses/BSD'.
|
17
Linux/deploy/debian/rules
Executable file
17
Linux/deploy/debian/rules
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/make -f
|
||||
# -*- makefile -*-
|
||||
|
||||
DEB_PYTHON_SYSTEM := pysupport
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/python-distutils.mk
|
||||
|
||||
install/bungloo::
|
||||
mkdir -p debian/bungloo/usr/share/applications/
|
||||
cp bungloo.desktop debian/bungloo/usr/share/applications/
|
||||
mkdir -p debian/bungloo/usr/share/pixmaps/
|
||||
cp bungloo/images/bungloo.xpm debian/bungloo/usr/share/pixmaps/
|
||||
|
||||
clean::
|
||||
rm -rf build build-stamp configure-stamp build/ MANIFEST
|
||||
dh_clean
|
Reference in a new issue