annotate libpurple/protocols/myspace/release.sh @ 17951:c0758f8dff33

Update for 0.12.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Mon, 16 Jul 2007 00:05:48 +0000
parents 1f08b7a0fc12
children 496affa42816
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17671
c5645d80aedc Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17647
diff changeset
1 #!/bin/bash
17647
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
17671
c5645d80aedc Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17647
diff changeset
5 # Package a new msimprpl for release. Must be run with bash.
c5645d80aedc Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17647
diff changeset
6
17951
c0758f8dff33 Update for 0.12.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17940
diff changeset
7 VERSION=0.12
17647
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
8 make
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
9 # 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
10 # into ~/pidgin/libpurple/protocols at the correct location.
17671
c5645d80aedc Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17647
diff changeset
11 # (if this command fails, run it manually).
c5645d80aedc Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17647
diff changeset
12 # This convenient command requires bash.
17940
1f08b7a0fc12 Update for 0.11, and fix build process on Unix. Closes #2086.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17685
diff changeset
13 cd ../../..
1f08b7a0fc12 Update for 0.11, and fix build process on Unix. Closes #2086.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17685
diff changeset
14 tar -cf libpurple/protocols/msimprpl-$VERSION.tar libpurple/protocols/myspace/{CHANGES,ChangeLog,LICENSE,Makefile.*,*.c,*.h,README,release.sh,.deps/*} autogen.sh configure.ac
1f08b7a0fc12 Update for 0.11, and fix build process on Unix. Closes #2086.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17685
diff changeset
15 cd libpurple/protocols/myspace
17647
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
16 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
17
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
18 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
19 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
20 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
21 cp ~/pidgin/win32-install-dir/plugins/libmyspace.dll .
17671
c5645d80aedc Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17647
diff changeset
22 # Zip is more common with Win32 users. Just include a few files in this archive.
17675
a752e1017fe9 Update for 0.9.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents: 17671
diff changeset
23 zip ../msimprpl-$VERSION-win32.zip libmyspace.dll README LICENSE CHANGES
17647
04a00333546a Add script to produce tarballs and zip archives for releases, for v0.8.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
diff changeset
24 ls -l ../msimprpl-$VERSION*