Merge pull request #275 from yanntech/master

debian directory
This commit is contained in:
Hylke Bons 2011-07-06 14:08:06 -07:00
commit 51e001ec15
8 changed files with 132 additions and 0 deletions

18
debian/README.Debian vendored Normal file
View file

@ -0,0 +1,18 @@
sparkleshare for Debian
-----------------------
SparkleShare is a collaboration and sharing tool that is designed to keep
things simple and to stay out of your way. It allows you to instantly sync
with any Git repository you have access to.
Though SparkleShare is not made to be a graphical frontend
for git or a backup tool, it may be useful for other kinds of purposes as well,
like backing up small files or monitoring your favourite project. In contrast
to the projects name, we will very likely refuse to implement your personal
ponies.
SparkleShare currently works on Linux and Mac. A Windows port and mobile
device support are planned for the future.
-- Yann Verry <yann@verry.org> Tue, 05 Jul 2011 11:05:14 +0200

5
debian/changelog vendored Normal file
View file

@ -0,0 +1,5 @@
sparkleshare (0.2.4-1ubuntu5) natty; urgency=low
* Initial Release
-- Yann Verry <yann@verry.org> Wed, 06 Jul 2011 20:15:45 +0200

1
debian/compat vendored Normal file
View file

@ -0,0 +1 @@
7

23
debian/control vendored Normal file
View file

@ -0,0 +1,23 @@
Source: sparkleshare
Section: net
Priority: extra
Maintainer: Yann Verry <yann@verry.org>
Build-Depends: debhelper (>= 7.0.50~), autotools-dev, libmono-dev, libgtk2.0-cil-dev, libnotify-cil-dev, libwebkit-cil-dev, intltool, mono-gmcs, libmono-system-web2.0-cil, python-nautilus
Standards-Version: 3.9.1
Homepage: http://sparkleshare.org/
Vcs-Git: https://github.com/hbons/SparkleShare.git
Vcs-Browser: https://github.com/hbons/SparkleShare
Package: sparkleshare
Architecture: amd64 i386
Depends: ${shlibs:Depends}, ${misc:Depends}, libwebkit1.1-cil, libnotify0.4-cil, git-core
Description: SparkleShare is a collaboration and sharing tool that is designed to keep
things simple and to stay out of your way. It allows you to instantly sync
with any Git repository you have access to.
Though SparkleShare is not made to be a graphical frontend
for git or a backup tool, it may be useful for other kinds of purposes as well,
like backing up small files or monitoring your favourite project. In contrast
to the projects name, we will very likely refuse to implement your personal
ponies.

36
debian/copyright vendored Normal file
View file

@ -0,0 +1,36 @@
Format: http://dep.debian.net/deps/dep5
Upstream-Name: sparkleshare
Source: <url://example.com>
Files: *
Copyright: <years> <put author's name and email here>
<years> <likewise for another author>
License: <special license>
<Put the license of the package here indented by 1 space>
<This follows the format of Description: lines in control file>
.
<Including paragraphs>
# If you want to use GPL v2 or later for the /debian/* files use
# the following clauses, or change it to suit. Delete these two lines
Files: debian/*
Copyright: 2011 Yann Verry <yann@verry.org>
License: GPL-2+
This package 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 package 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 <http://www.gnu.org/licenses/>
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
# Please also look if there are files or directories which have a
# different copyright/license attached and list them here.

2
debian/docs vendored Normal file
View file

@ -0,0 +1,2 @@
NEWS
README

46
debian/rules vendored Executable file
View file

@ -0,0 +1,46 @@
#!/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.
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
CONFIGURE_ARGS = --prefix=/usr
build: build-stamp
build-stamp: configure-stamp
dh_testdir
${MAKE} $(JOBS)
touch build-stamp
clean:
dh clean
rm -f build-stamp
rm -f install-stamp
rm -f configure-stamp
configure-stamp:
dh_testdir
#mkdir -p debian/build
#cd debian/build &&
./configure ${CONFIGURE_ARGS}
touch configure-stamp
install: build install-stamp
install-stamp:
dh install
touch install-stamp
binary-arch: install
dh binary-arch
binary-indep: install
dh binary-indep
binary: binary-arch binary-indep

1
debian/source/format vendored Normal file
View file

@ -0,0 +1 @@
3.0 (quilt)