view libpurple/protocols/myspace/release.sh @ 17671:c5645d80aedc

Update for v0.8 release.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Sun, 01 Jul 2007 03:30:34 +0000
parents 04a00333546a
children a752e1017fe9
line wrap: on
line source

#!/bin/bash
# Created:20070618
# By Jeff Connelly

# Package a new msimprpl for release. Must be run with bash.

VERSION=0.8
make
cd ..
# Include 'myspace' directory in archive, so it can easily be unextracted
# into ~/pidgin/libpurple/protocols at the correct location.
# (if this command fails, run it manually).
# This convenient command requires bash.
tar -cf msimprpl-$VERSION.tar myspace/{CHANGES,ChangeLog,LICENSE,Makefile*,*.c,*.h,README,release.sh,.deps/*}
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. Just include a few files in this archive.
zip ../msimprpl-$VERSION-win32.zip libmyspace.dll README LICENSE
ls -l ../msimprpl-$VERSION*