]> andersk Git - gssapi-openssh.git/blame - bundle/scripts/make-src-bundle
o Remove globus_core from the bundle.
[gssapi-openssh.git] / bundle / scripts / make-src-bundle
CommitLineData
277eed3a 1#!/bin/sh
2#
3
f51c3235 4source ./scripts/version.sh
81c61947 5
6NAME="gsi_openssh_bundle-$VERSION-src.tar.gz"
73559cc1 7
5ff39d34 8cd work/
430694ab 9
10#
11# create the bundle
12#
13
30a59f89 14$GPT_LOCATION/sbin/gpt-bundle -nodeps -srcdir=sources/ -output=$NAME gsi_openssh gsi_openssh_setup
430694ab 15mv sources/gsi_openssh_bundle-$VERSION-src_src.tar.gz $NAME
16
17#
18# remove globus_core from it
19#
20
21mkdir -p temp/
22tar xvzf $NAME -C foo/
23cd temp/
24rm globus_core-99.tar.gz
25cat packaging_list | grep -v 'globus_core' > packaging_list
26
27#
28# create the bundle (redux)
29#
30
31tar cvzf $NAME *
5ff39d34 32cd ../
430694ab 33
34#
35# place the bundle in the parent directory
36#
37
38mv temp/$NAME ../
This page took 0.082724 seconds and 5 git commands to generate.