]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/pkg_install/create/create.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / pkg_install / create / create.h
1 /* $FreeBSD$ */
2
3 /*
4  * FreeBSD install - a package for the installation and maintenance
5  * of non-core utilities.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * Jordan K. Hubbard
17  * 18 July 1993
18  *
19  * Include and define various things wanted by the create command.
20  *
21  */
22
23 #ifndef _INST_CREATE_H_INCLUDE
24 #define _INST_CREATE_H_INCLUDE
25
26 extern match_t  MatchType;
27 extern char     *Prefix;
28 extern char     *Comment;
29 extern char     *Desc;
30 extern char     *Display;
31 extern char     *Install;
32 extern char     *PostInstall;
33 extern char     *DeInstall;
34 extern char     *PostDeInstall;
35 extern char     *Contents;
36 extern char     *Require;
37 extern char     *SrcDir;
38 extern char     *BaseDir;
39 extern char     *ExcludeFrom;
40 extern char     *Mtree;
41 extern char     *Pkgdeps;
42 extern char     *Conflicts;
43 extern char     *Origin;
44 extern char     *InstalledPkg;
45 extern char     PlayPen[];
46 extern int      Dereference;
47 extern int      PlistOnly;
48 extern int      Recursive;
49 extern int      Regenerate;
50
51 enum zipper {NONE, GZIP, BZIP, BZIP2, XZ };
52 extern enum zipper      Zipper;
53
54 void            add_cksum(Package *, PackingList, const char *);
55 void            check_list(const char *, Package *);
56 void            copy_plist(const char *, Package *);
57
58 #endif  /* _INST_CREATE_H_INCLUDE */