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

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: Address comments 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..520477622b757e8e67a82d880e21bb118604a9ad
--- /dev/null
+++ b/remoting/host/installer/linux/build-deb.sh
@@ -0,0 +1,21 @@
+#!/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.
+
+if [[ -z "$version_full" ]]; then
+ echo 'Error: $version_full not set'
+ exit 1
+fi
+
+# 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" \
+ "New Debian package"
+
+dpkg-buildpackage -b -us -uc

Powered by Google App Engine
This is Rietveld 408576698