From: Ben Hutchings Date: Tue, 12 Feb 2008 23:07:43 +0000 (+0000) Subject: [svn-inject] Applying Debian modifications to trunk X-Git-Tag: 1.0.0.2ds2-1~9 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=emusic-remote.git;a=commitdiff_plain;h=60bca12288ddac2dd6d066a2c96c458320810bf9 [svn-inject] Applying Debian modifications to trunk --- diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8f751a2 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +emusic-remote (1.0.0.2ds1-1) unstable; urgency=low + + * Initial release - closes: #444409 + + -- Ben Hutchings Tue, 12 Feb 2008 22:46:17 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d224a11 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: emusic-remote +Section: sound +Priority: extra +Maintainer: Ben Hutchings +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 +Homepage: http://www.emusic.com/dlm/download.html + +Package: emusic-remote +Architecture: all +Depends: xulrunner (>= 1.8.0) +Description: browser and download manager for eMusic.com + eMusic Remote is the officially supported browser and download manager + for the eMusic.com music store. It can also import downloaded files + into other programs automatically. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..80edf88 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Ben Hutchings on +Tue, 12 Feb 2008 22:46:17 +0000. + +It was downloaded from . + +Upstream Author(s): + + eMusic.com Inc. + +Copyright: + + Copyright 2007 eMusic.com Inc. + +License: + + The rights in the trademarks, logos and service marks of + eMusic.com Inc., as well as the look and feel of the eMusic + website and the binary, are not licensed to you and are + specifically reserved by eMusic.com Inc. To the extent they are + works of authorship (like logos and graphic design), they are not + included in the binary that is licensed under these terms. If you + use the text of documents, and wish to also use any of these + rights, or if you have any other questions about complying with + our license terms for this binary, you should contact eMusic.com + Inc. here: http://www.emusic.com/contact/index.html. + + This binary is licensed to you under the GNU Lesser General Public + License version 3. + +On Debian systems, the complete text of the GNU Lesser General Public +License version 3 can be found in `/usr/share/common-licenses/LGPL-3'. + +The Debian packaging is copyright 2008 Ben Hutchings and is licensed +under the GPL; see `/usr/share/common-licenses/GPL'. diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..2b7c206 --- /dev/null +++ b/debian/install @@ -0,0 +1,9 @@ +application.ini usr/share/emusic-remote +components/.autoreg usr/share/emusic-remote/components +components/eCmdLineHandler.js usr/share/emusic-remote/components +chrome/chrome.manifest usr/share/emusic-remote/chrome +chrome/classic.jar usr/share/emusic-remote/chrome +chrome/emusic.jar usr/share/emusic-remote/chrome +chrome/locales.jar usr/share/emusic-remote/chrome +chrome/locales.manifest usr/share/emusic-remote/chrome +defaults/preferences/emusic.js usr/share/emusic-remote/defaults/preferences diff --git a/debian/menu b/debian/menu new file mode 100644 index 0000000..777fa3d --- /dev/null +++ b/debian/menu @@ -0,0 +1,2 @@ +?package(emusic-remote):needs="X11" section="Applications/Sound"\ + title="emusic-remote" command="/usr/bin/emusic-remote" diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e26014d --- /dev/null +++ b/debian/rules @@ -0,0 +1,39 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + #dh_installdirs + +# Build architecture-independent files here. +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_install + dh_installmenu + dh_installman + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install