annotate libpurple/protocols/myspace/release.sh @ 17647:04a00333546a

Add script to produce tarballs and zip archives for releases, for v0.8.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Tue, 19 Jun 2007 03:09:37 +0000
parents
children c5645d80aedc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17647
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
1 #!/bin/sh
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
2 # Created:20070618
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
3 # By Jeff Connelly
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
4
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
5 VERSION=0.8
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
6 make
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
7 cd ..
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
8 # Include 'myspace' directory in archive, so it can easily be unextracted
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
9 # into ~/pidgin/libpurple/protocols at the correct location.
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
10 tar -cf msimprpl-$VERSION.tar myspace/
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
11 cd myspace
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
12 gzip ../msimprpl-$VERSION.tar
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
13
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
14 mv ~/pidgin/config.h ~/pidgin/config.h-
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
15 make -f Makefile.mingw
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
16 mv ~/pidgin/config.h- ~/pidgin/config.h
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
17 cp ~/pidgin/win32-install-dir/plugins/libmyspace.dll .
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
18 # Zip is more common with Win32 users
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
19 zip ../msimprpl-$VERSION-win32.zip libmyspace.dll README LICENSE
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
20 ls -l ../msimprpl-$VERSION*