add.h revision 327
1327Sjkh/* $Id: add.h,v 1.3 1993/08/24 09:23:13 jkh Exp $ */
230221Scharnier
339068Sjkh/*
4327Sjkh * FreeBSD install - a package for the installation and maintainance
5327Sjkh * of non-core utilities.
6327Sjkh *
7327Sjkh * Redistribution and use in source and binary forms, with or without
8327Sjkh * modification, are permitted provided that the following conditions
9327Sjkh * are met:
10327Sjkh * 1. Redistributions of source code must retain the above copyright
11327Sjkh *    notice, this list of conditions and the following disclaimer.
12327Sjkh * 2. Redistributions in binary form must reproduce the above copyright
13327Sjkh *    notice, this list of conditions and the following disclaimer in the
14327Sjkh *    documentation and/or other materials provided with the distribution.
15327Sjkh *
16327Sjkh * Jordan K. Hubbard
17327Sjkh * 18 July 1993
18327Sjkh *
19327Sjkh * Include and define various things wanted by the add command.
20327Sjkh *
21327Sjkh */
22327Sjkh
23327Sjkh#ifndef _INST_ADD_H_INCLUDE
24327Sjkh#define _INST_ADD_H_INCLUDE
25327Sjkh
26327Sjkhextern char	*Prefix;
27327Sjkhextern Boolean	NoInstall;
28327Sjkhextern Boolean	NoRecord;
29327Sjkhextern char	*Mode;
30327Sjkhextern char	*Owner;
31327Sjkhextern char	*Group;
32327Sjkhextern char	*Directory;
33327Sjkhextern char	*PkgName;
34327Sjkh
35327Sjkhint		make_hierarchy(char *);
36327Sjkhvoid		extract_plist(char *, Package *);
377937Sjkhvoid		apply_perms(char *, char *);
38327Sjkh
39327Sjkh#endif	/* _INST_ADD_H_INCLUDE */
40327Sjkh