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

Side by Side 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, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/bash -e
2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7
8 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.
9
10 # Create a fresh debian/changelog.
11 export DEBEMAIL="The Chromium Authors <chromium-dev@chromium.org>"
12 rm -f debian/changelog
13 debchange --create \
14 --package chrome-remote-desktop \
15 --distribution lucid \
16 --newversion "$version_full" \
17 "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
18
19 dpkg-buildpackage -b -us -uc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698