0d6b3b20e1
* added class BPackageInfo, which contains packaging attributes of a package (the values relevant for package management) * implemented parser (mostly) for reading a BPackageInfo from a config file (.PackageInfo) in order to pass them on to the PackageWriter when creating a package * pulled hpkg-related stuff from bin/package into the package kit * adjusted packagefs-Volume to skip .PackageInfo files when populating the mountpoint, as those files shouldn't appear as part of an activated package git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40301 a95241bf-73f2-0310-859d-f6bbb57e9c96
29 lines
704 B
C++
29 lines
704 B
C++
/*
|
|
* Copyright 2011, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__ATTRIBUTES_H_
|
|
#define _PACKAGE__ATTRIBUTES_H_
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
|
|
// attributes used in package and as file attribute, too
|
|
extern const char* kPackageNameAttribute;
|
|
extern const char* kPackageVendorAttribute;
|
|
extern const char* kPackageVersionAttribute;
|
|
|
|
// attributes kept local to packages
|
|
extern const char* kPackageCopyrightsAttribute;
|
|
extern const char* kPackageLicensesAttribute;
|
|
extern const char* kPackagePackagerAttribute;
|
|
extern const char* kPackageProvidesAttribute;
|
|
extern const char* kPackageRequiresAttribute;
|
|
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__ATTRIBUTES_H_
|