Author: mwise
Date: Tue Feb 10 10:35:38 2009
New Revision: 4130

URL: http://svn.slimdevices.com?rev=4130&root=Jive&view=rev
Log:
Bug: 11023, Initial debian packaging info... The makefile does not yet call 
this, but I've verified that you can indeed build a .deb with it.

Added:
    7.3/trunk/squeezeplay/src/platforms/
    7.3/trunk/squeezeplay/src/platforms/debian/
    7.3/trunk/squeezeplay/src/platforms/debian/README
    7.3/trunk/squeezeplay/src/platforms/debian/changelog
    7.3/trunk/squeezeplay/src/platforms/debian/compat
    7.3/trunk/squeezeplay/src/platforms/debian/control
    7.3/trunk/squeezeplay/src/platforms/debian/dirs
    7.3/trunk/squeezeplay/src/platforms/debian/rules   (with props)
    7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postinst
    7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postrm

Added: 7.3/trunk/squeezeplay/src/platforms/debian/README
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/platforms/debian/README?rev=4130&root=Jive&view=auto
==============================================================================
--- 7.3/trunk/squeezeplay/src/platforms/debian/README (added)
+++ 7.3/trunk/squeezeplay/src/platforms/debian/README Tue Feb 10 10:35:38 2009
@@ -1,0 +1,11 @@
+$Id$
+
+This is SqueezePlay for Debian.
+
+It is a self-contained music player and SqueezeBox controlling application.
+
+Please see http://www.slimdevices.com/ for more information.
+
+- Matt Wise <debian | at | slimdevices.com>
+
+Tue Feb 10 09:39:11 PST 2009

Added: 7.3/trunk/squeezeplay/src/platforms/debian/changelog
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/platforms/debian/changelog?rev=4130&root=Jive&view=auto
==============================================================================
--- 7.3/trunk/squeezeplay/src/platforms/debian/changelog (added)
+++ 7.3/trunk/squeezeplay/src/platforms/debian/changelog Tue Feb 10 10:35:38 
2009
@@ -1,0 +1,5 @@
+squeezeplay (_VERSION_) unstable; urgency=low
+
+  * Initial packaging attempt for SqueezePlay. Should put all files into 
/opt/squeezeplay/
+
+ -- Matt Wise <[email protected]>  Wed, 10 Feb 2008 09:32:33 -0000

Added: 7.3/trunk/squeezeplay/src/platforms/debian/compat
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/platforms/debian/compat?rev=4130&root=Jive&view=auto
==============================================================================
--- 7.3/trunk/squeezeplay/src/platforms/debian/compat (added)
+++ 7.3/trunk/squeezeplay/src/platforms/debian/compat Tue Feb 10 10:35:38 2009
@@ -1,0 +1,1 @@
+4

Added: 7.3/trunk/squeezeplay/src/platforms/debian/control
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/platforms/debian/control?rev=4130&root=Jive&view=auto
==============================================================================
--- 7.3/trunk/squeezeplay/src/platforms/debian/control (added)
+++ 7.3/trunk/squeezeplay/src/platforms/debian/control Tue Feb 10 10:35:38 2009
@@ -1,0 +1,13 @@
+Source: squeezeplay
+Section: sound
+Priority: optional
+Maintainer: Logitech/Slim Devices <[email protected]>
+Build-Depends: debhelper (>= 4.0.0)
+Standards-Version: 3.6.2
+
+Package: squeezeplay
+Architecture: all
+Depends: 
+Description: Logitech SqueezePlay
+ SqueezePlay is a client for the SqueezeCenter music streaming server.
+ .

Added: 7.3/trunk/squeezeplay/src/platforms/debian/dirs
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/platforms/debian/dirs?rev=4130&root=Jive&view=auto
==============================================================================
--- 7.3/trunk/squeezeplay/src/platforms/debian/dirs (added)
+++ 7.3/trunk/squeezeplay/src/platforms/debian/dirs Tue Feb 10 10:35:38 2009
@@ -1,0 +1,1 @@
+opt/squeezeplay

Added: 7.3/trunk/squeezeplay/src/platforms/debian/rules
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/platforms/debian/rules?rev=4130&root=Jive&view=auto
==============================================================================
--- 7.3/trunk/squeezeplay/src/platforms/debian/rules (added)
+++ 7.3/trunk/squeezeplay/src/platforms/debian/rules Tue Feb 10 10:35:38 2009
@@ -1,0 +1,43 @@
+#!/usr/bin/make -f
+
+# $Id$
+
+# Uncomment this to turn on verbose mode.
+export DH_VERBOSE=1
+
+package=squeezeplay
+base=$(CURDIR)/debian/$(package)
+source=$(CURDIR)/../../build/linux/
+squeezeplay=$(base)/opt/$(package)
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -rf ${base}
+
+install:
+       dh_testdir
+       dh_testroot
+       dh_installdirs
+
+       # Copy all of the files into the base dir
+       cp -r $(source)/* $(squeezeplay)/
+       
+binary-indep: install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs 
+       dh_installdocs
+       dh_install
+       dh_installlogrotate
+       dh_installinit
+       dh_installman
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep
+.PHONY: build clean binary-indep binary install configure

Propchange: 7.3/trunk/squeezeplay/src/platforms/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: 7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postinst
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postinst?rev=4130&root=Jive&view=auto
==============================================================================
--- 7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postinst (added)
+++ 7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postinst Tue Feb 10 
10:35:38 2009
@@ -1,0 +1,15 @@
+#!/bin/sh
+
+# $Id$
+
+# postinst script for SqueezePlay
+
+set -e
+. /usr/share/debconf/confmodule
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0

Added: 7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postrm
URL: 
http://svn.slimdevices.com/7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postrm?rev=4130&root=Jive&view=auto
==============================================================================
--- 7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postrm (added)
+++ 7.3/trunk/squeezeplay/src/platforms/debian/squeezeplay.postrm Tue Feb 10 
10:35:38 2009
@@ -1,0 +1,9 @@
+#!/bin/sh -e
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+

_______________________________________________
Jive-checkins mailing list
[email protected]
http://lists.slimdevices.com/cgi-bin/mailman/listinfo/jive-checkins

Reply via email to