Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Unified Diff: remoting/host/installer/linux/build-deb.sh

Issue 10821028: Basic Debian packaging for Linux Me2Me host (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/installer/linux/build-deb.sh
diff --git a/remoting/host/installer/linux/build-deb.sh b/remoting/host/installer/linux/build-deb.sh
new file mode 100755
index 0000000000000000000000000000000000000000..1f6394f3165ac9b8d7912b47ba4693ecb0aa6cd7
--- /dev/null
+++ b/remoting/host/installer/linux/build-deb.sh
@@ -0,0 +1,19 @@
+#!/bin/bash -e
+
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+
+version_full="${version_full:-1.2.3.4}"
Jamie 2012/07/25 23:40:40 Probably better to fail if version_full isn't set.
Lambros 2012/07/26 21:19:04 Done.
+
+# Create a fresh debian/changelog.
+export DEBEMAIL="The Chromium Authors <chromium-dev@chromium.org>"
+rm -f debian/changelog
+debchange --create \
+ --package chrome-remote-desktop \
+ --distribution lucid \
+ --newversion "$version_full" \
+ "Debian package"
Jamie 2012/07/25 23:40:40 What is this string used for?
Lambros 2012/07/26 21:19:04 It's the text of the changelog entry. I've change
+
+dpkg-buildpackage -b -us -uc

Powered by Google App Engine
This is Rietveld 408576698