diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 00000000..952ce1b3 --- /dev/null +++ b/debian/README.Debian @@ -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 Tue, 05 Jul 2011 11:05:14 +0200 diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..f94887ae --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +sparkleshare (0.2.4-1ubuntu5) natty; urgency=low + + * Initial Release + + -- Yann Verry Wed, 06 Jul 2011 20:15:45 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..7f8f011e --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..e4d232fd --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: sparkleshare +Section: net +Priority: extra +Maintainer: Yann Verry +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. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..5ee20365 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,36 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: sparkleshare +Source: + +Files: * +Copyright: + +License: + + + . + + +# 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 +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 + . + 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. diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000..50bd824b --- /dev/null +++ b/debian/docs @@ -0,0 +1,2 @@ +NEWS +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..565ba907 --- /dev/null +++ b/debian/rules @@ -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 + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 00000000..163aaf8d --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)