OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 # | 4 # |
5 # This file provides common configuration information for building | 5 # This file provides common configuration information for building |
6 # chromium-browser packages for various platforms. | 6 # chromium-browser packages for various platforms. |
7 | 7 |
8 # Base name of the package. | 8 # Base name of the package. |
9 PACKAGE="chromium-browser" | 9 PACKAGE="chromium-browser" |
10 | 10 |
11 # Filename of the main executable (for generating launcher scripts, etc.) | 11 # Filename of the main executable (for generating launcher scripts, etc.) |
12 PROGNAME=chrome | 12 PROGNAME=chrome |
13 | 13 |
| 14 # Relocatable part of base directory for package installation. |
| 15 INSTALLDIRPREFIX=/opt |
| 16 |
14 # Base directory for package installation. | 17 # Base directory for package installation. |
15 INSTALLDIR=/opt/chromium.org/chromium | 18 INSTALLDIR="${INSTALLDIRPREFIX}"/chromium.org/chromium |
16 | 19 |
17 # Display string for desktop menu/icon. | 20 # Display string for desktop menu/icon. |
18 MENUNAME="Chromium Web Browser" | 21 MENUNAME="Chromium Web Browser" |
19 | 22 |
20 # Brief package description. | 23 # Brief package description. |
21 SHORTDESC="The web browser from Chromium.org" | 24 SHORTDESC="The web browser from Chromium.org" |
22 | 25 |
23 # Detailed package description. | 26 # Detailed package description. |
24 FULLDESC="Chromium is a browser that combines a minimal design with sophisticate
d technology to make the web faster, safer, and easier." | 27 FULLDESC="Chromium is a browser that combines a minimal design with sophisticate
d technology to make the web faster, safer, and easier." |
25 | 28 |
26 # Package maintainer information. | 29 # Package maintainer information. |
27 # TODO(mmoss) Setup a mailbox for this address | 30 # TODO(mmoss) Setup a mailbox for this address |
28 MAINTNAME="Chromium Linux Team" | 31 MAINTNAME="Chromium Linux Team" |
29 MAINTMAIL="chromium-linux-packager@chromium.org" | 32 MAINTMAIL="chromium-linux-packager@chromium.org" |
30 PRODUCTURL="http://www.chromium.org/" | 33 PRODUCTURL="http://www.chromium.org/" |
OLD | NEW |