diff 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
line wrap: on
line diff
--- /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*