Mercurial > pidgin
changeset 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 | c77daec18cbd |
children | 23f57d36cb65 |
files | libpurple/protocols/myspace/myspace.c libpurple/protocols/myspace/release.sh |
diffstat | 2 files changed, 21 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/myspace/myspace.c Mon Jun 18 02:34:17 2007 +0000 +++ b/libpurple/protocols/myspace/myspace.c Tue Jun 19 03:09:37 2007 +0000 @@ -2169,7 +2169,7 @@ "prpl-myspace", /**< id */ "MySpaceIM", /**< name */ - "0.7", /**< version */ + "0.8", /**< version */ /** summary */ "MySpaceIM Protocol Plugin", /** description */
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libpurple/protocols/myspace/release.sh Tue Jun 19 03:09:37 2007 +0000 @@ -0,0 +1,20 @@ +#!/bin/sh +# Created:20070618 +# By Jeff Connelly + +VERSION=0.8 +make +cd .. +# Include 'myspace' directory in archive, so it can easily be unextracted +# into ~/pidgin/libpurple/protocols at the correct location. +tar -cf msimprpl-$VERSION.tar myspace/ +cd myspace +gzip ../msimprpl-$VERSION.tar + +mv ~/pidgin/config.h ~/pidgin/config.h- +make -f Makefile.mingw +mv ~/pidgin/config.h- ~/pidgin/config.h +cp ~/pidgin/win32-install-dir/plugins/libmyspace.dll . +# Zip is more common with Win32 users +zip ../msimprpl-$VERSION-win32.zip libmyspace.dll README LICENSE +ls -l ../msimprpl-$VERSION*