]> pd.if.org Git - zpackage/blob - zpm-ipkgfile
remove unused options in zpm-ipkgfile
[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 set -e
46 for path in $*; do
47         fhash=$(zpm pkgfileinfo hash $path)
48         mode=$(zpm pkgfileinfo mode $path)
49         owner=$(zpm pkgfileinfo username $path)
50         group=$(zpm pkgfileinfo groupname $path)
51         ftype=$(zpm pkgfileinfo filetype $path)
52         name=$(basename -- $path)
53
54         if [ "$pkgroot" != '/' ]; then
55                 dir=$pkgroot/$(dirname -- $path)
56                 dir=${dir%/.}
57                 if [ "$dir" = "//" ]; then dir=/ ; fi
58         else
59                 dir=''
60         fi
61
62         tmppath=$dir/.installing.$name
63
64         # can't use install because it's not posix.
65         # probably worth writing a zpm-install, but with
66         # a different name since that wants to be a package install
67         # probably makes the most sense for extract to know how
68         # to do the extract to temp and such, then
69         # you can just add the -S option (secure)
70         #cat <<-EOC
71         set -x
72         mkdir -p $dir
73         zpm extract $pkgfile $fhash $tmppath 0
74         chown $owner:$group $tmppath
75         chmod $mode $tmppath
76         # TODO mv -n non-posix, going to need to have extract do all
77         # of this
78         mv -n $tmppath $dir/$name
79         set +x
80         #EOC
81 done