Mercurial > pidgin.yaz
annotate libpurple/protocols/myspace/release.sh @ 17975:496affa42816
Update for 0.13 release.
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Sun, 05 Aug 2007 02:25:59 +0000 |
parents | c0758f8dff33 |
children | c9da1580687c |
rev | line source |
---|---|
17914
c5645d80aedc
Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
17890
diff
changeset
|
1 #!/bin/bash |
17890
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 |
17914
c5645d80aedc
Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
17890
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:
17890
diff
changeset
|
6 |
17975
496affa42816
Update for 0.13 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
17951
diff
changeset
|
7 VERSION=0.13 |
17890
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. |
17914
c5645d80aedc
Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
17890
diff
changeset
|
11 # (if this command fails, run it manually). |
c5645d80aedc
Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
17890
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:
17928
diff
changeset
|
13 cd ../../.. |
1f08b7a0fc12
Update for 0.11, and fix build process on Unix. Closes #2086.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
17928
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:
17928
diff
changeset
|
15 cd libpurple/protocols/myspace |
17890
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 . |
17914
c5645d80aedc
Update for v0.8 release.
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
17890
diff
changeset
|
22 # Zip is more common with Win32 users. Just include a few files in this archive. |
17918 | 23 zip ../msimprpl-$VERSION-win32.zip libmyspace.dll README LICENSE CHANGES |
17890
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* |