xref: /haiku/src/kits/package/Attributes.cpp (revision f2b4344867e97c3f4e742a1b4a15e6879644601a)
1 /*
2  * Copyright 2011, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Oliver Tappe <zooey@hirschkaefer.de>
7  */
8 
9 
10 #include <package/Attributes.h>
11 
12 
13 namespace BPackageKit {
14 
15 
16 // attributes used in package and as BFS-attribute
17 const char* kPackageNameAttribute		= "PKG:name";
18 const char* kPackagePlatformAttribute	= "PKG:platform";
19 const char* kPackageVendorAttribute		= "PKG:vendor";
20 const char* kPackageVersionAttribute	= "PKG:version";
21 
22 // attributes kept local to packages
23 const char* kPackageCopyrightsAttribute	= "PKG:copyrights";
24 const char* kPackageLicensesAttribute	= "PKG:licenses";
25 const char* kPackagePackagerAttribute	= "PKG:packager";
26 const char* kPackageProvidesAttribute	= "PKG:provides";
27 const char* kPackageRequiresAttribute	= "PKG:requires";
28 
29 
30 }	// namespace BPackageKit
31