Added files necessary for automating packing of distributions.

This commit is contained in:
Jordan K. Hubbard 1993-10-10 20:24:47 +00:00
parent 0d0a2b1998
commit 7f801ea51e
4 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1 @@
Package install (source), version 0.5

View File

@ -0,0 +1,2 @@
@cwd /usr/ports
pkg_install

View File

@ -0,0 +1,5 @@
This is the pkg_install suite of tools for doing maintainance of
software "packages". More documentation is available in the man pages
for each individual command.
This is pkg_install version 0.5.

View File

@ -1,3 +1,21 @@
SUBDIR=lib add create delete info
.include <bsd.subdir.mk>
dists: bin_dist src_dist
src_dist: clean
@echo "CVS" > /tmp/excludeXXX
pkg_create -X /tmp/excludeXXX -d +DESC -c +COMMENT -f +CONTENTS pkg_install_src
@rm -f /tmp/excludeXXX
bin_dist: all install
tar czf pkg_install.tar.gz -C / \
usr/local/bin/pkg_add \
usr/local/bin/pkg_create \
usr/local/bin/pkg_delete \
usr/local/bin/pkg_info \
usr/local/man/man1/pkg_add.1 \
usr/local/man/man1/pkg_create.1 \
usr/local/man/man1/pkg_delete.1 \
usr/local/man/man1/pkg_info.1