~ubuntu-desktop/unity-lens-files/ubuntu

« back to all changes in this revision

Viewing changes to src/config.vala

  • Committer: Didier Roche
  • Date: 2012-01-12 17:28:26 UTC
  • mfrom: (14.2.190 MASTER)
  • mto: This revision was merged to the branch mainline in revision 149.
  • Revision ID: didier.roche@canonical.com-20120112172826-az8arm5v0nxjgf4o
Tags: upstream-5.0.0
ImportĀ upstreamĀ versionĀ 5.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
namespace Config {
2
2
 
3
 
  const string PREFIX = "/usr/local";
4
 
  
5
 
  const string DATADIR = "/usr/local/share";
6
 
  
7
 
  const string PKGDATADIR = "/usr/local/share/unity";
8
 
  
9
 
  const string BINDIR = "/usr/local/bin";
10
 
  
11
 
  const string LOCALEDIR = "/usr/local/share/locale";
 
3
  const string PREFIX = "/usr";
 
4
  
 
5
  const string DATADIR = "/usr/share";
 
6
  
 
7
  const string PKGDATADIR = "/usr/share/unity";
 
8
  
 
9
  const string BINDIR = "/usr/bin";
 
10
  
 
11
  const string LOCALEDIR = "/usr/share/locale";
12
12
  
13
13
  const string PACKAGE = "unity-lens-files";
14
14
  
15
 
  const string VERSION = "0.6.12";
 
15
  const string VERSION = "5.0.0";
16
16
}