mirror of
https://github.com/vattam/BSDGames.git
synced 2025-12-20 10:54:48 +00:00
git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5086 a4a2c43b-8ac3-0310-8836-e0e880c912e2
14 lines
283 B
Plaintext
Executable File
14 lines
283 B
Plaintext
Executable File
# install-score.in - install a score file
|
|
|
|
set -e
|
|
|
|
scorefile="@install_prefix@$1"
|
|
|
|
mkdir -p "$(dirname "$scorefile")"
|
|
|
|
test -e "$scorefile" || touch "$scorefile"
|
|
if [ @do_chown@ = y ]; then
|
|
chown @vardata_owner@.@vardata_group@ "$scorefile"
|
|
fi
|
|
chmod @vardata_perms@ "$scorefile"
|