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 |