]> pd.if.org Git - zpackage/blob - zpm-ipkgfile
remove some debugging verbosity
[zpackage] / zpm-ipkgfile
1 #!/bin/sh
2
3 # install a file from a package
4 # -f pkgfile
5 # -R root of pkg
6 # -P prefix to file
7 # -S strip prefix
8 # -p pkgname
9
10 pkgroot=/
11
12 while getopts :f:v:r:d:a:u:l:p:b:P:R: opt; do
13         case $opt in
14                 R) pkgroot="$OPTARG" ;;
15                 f) pkgfile="$OPTARG" ;;
16                 v) pkgver="$OPTARG" ;;
17                 r) pkgrel="$OPTARG" ;;
18                 P) prefix="$OPTARG" ;;
19         esac
20 done
21 shift $((OPTIND - 1))
22
23 die() {
24         echo $* 1>&2
25         exit 1
26 }
27
28 pkgfileinfo() {
29         zpm shell $pkgfile<<EOS
30 select $1 from packagefiles
31         where path='$2'
32         and package||'-'||version||'-'||release = '$pkg'
33         ;
34 EOS
35 }
36
37 # if not from a package file, from local db
38 if [ -z "$pkgfile" ]; then
39         die "installing from non-pkgfile not supported"
40 fi
41
42 pkg="$1"
43 shift
44
45 ZPMPKGFILE=$pkgfile
46 export ZPMPKGFILE
47
48 set -e
49 for path in $*; do
50         printf '%s installing %s\n' $pkg $path
51         fhash=$(zpm pkgfileinfo hash $path)
52         mode=$(zpm pkgfileinfo mode $path)
53         ftype=$(zpm pkgfileinfo filetype $path)
54         owner=$(zpm pkgfileinfo username $path)
55         group=$(zpm pkgfileinfo groupname $path)
56
57         name=$(basename -- $path)
58         dir=$(dirname -- $path)
59
60         if [ "$pkgroot" != '/' ]; then
61                 dir=$pkgroot/$dir
62                 dir=${dir%/.}
63                 if [ "$dir" = "//" ]; then dir=/ ; fi
64         fi
65
66         tmppath=$dir/.installing.$name
67
68         # can't use install because it's not posix.
69         # probably worth writing a zpm-install, but with
70         # a different name since that wants to be a package install
71         # probably makes the most sense for extract to know how
72         # to do the extract to temp and such, then
73         # you can just add the -S option (secure)
74         #cat <<-EOC
75         mkdir -p $dir
76         zpm extract $pkgfile $fhash $tmppath 0
77         chown $owner:$group $tmppath
78         chmod $mode $tmppath
79         # TODO mv -n non-posix, going to need to have extract do all
80         # of this
81         mv -n $tmppath $dir/$name
82         #EOC
83 done