]> andersk Git - gssapi-openssh.git/blame_incremental - bundle/scripts/make-src-bundle
The man2html from jbasney on pkilab2 works whereas the standard one doesn't.
[gssapi-openssh.git] / bundle / scripts / make-src-bundle
... / ...
CommitLineData
1#!/bin/sh
2#
3
4source ./scripts/version.sh
5
6NAME="gsi_openssh_bundle-$VERSION-src.tar.gz"
7
8cd work/
9
10#
11# create the bundle
12#
13
14$GPT_LOCATION/sbin/gpt-bundle -nodeps -srcdir=sources/ -output=$NAME gsi_openssh gsi_openssh_setup
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 temp/
23cd temp/
24rm globus_core-99.tar.gz
25cat packaging_list | grep -v 'globus_core' > packaging_list.new
26mv packaging_list.new packaging_list
27
28#
29# create the bundle (redux)
30#
31
32tar cvzf $NAME *
33cd ../
34
35#
36# place the bundle in the parent directory
37#
38
39mv temp/$NAME ../
This page took 0.03296 seconds and 5 git commands to generate.