add.h revision 379
155714Skris/* $Id: add.h,v 1.4 1993/09/04 05:06:25 jkh Exp $ */
255714Skris
355714Skris/*
455714Skris * FreeBSD install - a package for the installation and maintainance
555714Skris * of non-core utilities.
655714Skris *
755714Skris * Redistribution and use in source and binary forms, with or without
8280304Sjkim * modification, are permitted provided that the following conditions
955714Skris * are met:
1055714Skris * 1. Redistributions of source code must retain the above copyright
1155714Skris *    notice, this list of conditions and the following disclaimer.
1255714Skris * 2. Redistributions in binary form must reproduce the above copyright
1355714Skris *    notice, this list of conditions and the following disclaimer in the
1455714Skris *    documentation and/or other materials provided with the distribution.
15280304Sjkim *
1655714Skris * Jordan K. Hubbard
1755714Skris * 18 July 1993
1855714Skris *
1955714Skris * Include and define various things wanted by the add command.
2055714Skris *
2155714Skris */
22280304Sjkim
2355714Skris#ifndef _INST_ADD_H_INCLUDE
2455714Skris#define _INST_ADD_H_INCLUDE
2555714Skris
2655714Skrisextern char	*Prefix;
2755714Skrisextern Boolean	NoInstall;
2855714Skrisextern Boolean	NoRecord;
2955714Skrisextern char	*Mode;
3055714Skrisextern char	*Owner;
3155714Skrisextern char	*Group;
3255714Skrisextern char	*Directory;
3355714Skrisextern char	*PkgName;
3455714Skris
3555714Skrisint		make_hierarchy(char *);
3655714Skrisvoid		extract_plist(char *, Package *);
37280304Sjkimvoid		apply_perms(char *, char *);
3855714Skris
3955714Skris#endif	/* _INST_ADD_H_INCLUDE */
40280304Sjkim