summaryrefslogtreecommitdiff
path: root/plugins/repo/get.sh
blob: 52edc278d0e836b7f3d6460c10274b864362e125 (plain)
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
#!@SHELL@
name='rvs repo get'
ver='0.7.2'
# Copyright (C) 2009 Luke Shumaker
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# Originally written by Luke Shumaker <lukeshu@sbcglobal.net>.

source "$libexecdir/lib/stdio"

# get ID [FILE]
id="$1"
tmp=`tempfile`
"$libexecdir/get.f" "$id" "$tmp"
type="`sed     -n 's/^type://p' "$tmp"`"
file="${2-`sed -n 's/^name://p' "$tmp"`}"
hash="`sed     -n 's/^hash://p' "$tmp"`"

out "-$type `pwd`/$file:$hash"
"$libexecdir/get.$type" "$hash" "$file"

rm "$tmp"