14 lines
349 B
Bash
14 lines
349 B
Bash
#!/bin/sh
|
|
# $NetBSD: prepare-import.sh,v 1.2 2008/11/07 15:24:44 joerg Exp $
|
|
#
|
|
# Copy new pkgsrc/pkg_install/files to dist.
|
|
# Run this script and check for additional files and
|
|
# directories to prune, only relevant content is included.
|
|
|
|
set -e
|
|
|
|
cd dist
|
|
rm -f Makefile.in README config* install-sh tkpkg
|
|
rm -f */Makefile.in */*.cat*
|
|
rm -rf CVS */CVS
|