1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/bin/sh
# $Id: csp_install,v 1.2 2009-09-29 09:13:07 joostvb Exp $
# $Source: /cvsroot/caspar/caspar/caspar/script/csp_install,v $
# csp_install - wrapper for install(1), to be used in caspar-ized Makefiles
#
# usage: csp_install <file> <directory>
#
# honors optionally set environment variable csp_INSTALL_OPTIONS.
# use e.g.
# export csp_INSTALL_OPTIONS='--owner=www-data --group=www-data'
#
# Generally, this script is to be used by stating e.g.
#
# csp_UHOST = dummy
# csp_PUSH = $(csp_install_FUNC)
# csp_DIR = /etc/
# include caspar/mk/caspar.mk
#
# in a Makefile
#
# alternative, using cp:
#
# csp_UHOST = dummy
# csp_PUSH = mkdir -p $(3) && $(csp_CP) $(1) $(3)/
: ${csp_INSTALL_MODE:=u=rw,go=r}
install --directory $2
exec install --backup=off --preserve-timestamps --mode=$csp_INSTALL_MODE --no-target-directory $csp_INSTALL_OPTIONS $1 $2/$1
|