add.h revision 328
1/* $Id: add.h,v 1.3 1993/08/24 09:23:13 jkh Exp $ */
2
3/*
4 * FreeBSD install - a package for the installation and maintainance
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 add command.
20 *
21 */
22
23#ifndef _INST_ADD_H_INCLUDE
24#define _INST_ADD_H_INCLUDE
25
26extern char	*Prefix;
27extern Boolean	NoInstall;
28extern Boolean	NoRecord;
29extern char	*Mode;
30extern char	*Owner;
31extern char	*Group;
32extern char	*Directory;
33extern char	*PkgName;
34
35int		make_hierarchy(char *);
36void		extract_plist(char *, Package *);
37void		apply_perms(char *, char *);
38
39#endif	/* _INST_ADD_H_INCLUDE */
40