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
13namespace BPackageKit {
14
15
16// attributes used in package and as BFS-attribute
17const char* kPackageNameAttribute		= "PKG:name";
18const char* kPackagePlatformAttribute	= "PKG:platform";
19const char* kPackageVendorAttribute		= "PKG:vendor";
20const char* kPackageVersionAttribute	= "PKG:version";
21
22// attributes kept local to packages
23const char* kPackageCopyrightsAttribute	= "PKG:copyrights";
24const char* kPackageLicensesAttribute	= "PKG:licenses";
25const char* kPackagePackagerAttribute	= "PKG:packager";
26const char* kPackageProvidesAttribute	= "PKG:provides";
27const char* kPackageRequiresAttribute	= "PKG:requires";
28
29
30}	// namespace BPackageKit
31