1#!/bin/sh
2# install miscellaneous files
3
4SRCDIR="$1"
5PKGCONFIGDIR="$2"
6shift
7shift
8
9cd $SRCDIR || exit 1
10
11for I in $*
12do
13	cp $I $PKGCONFIGDIR
14done
15
16exit 0
17