This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I forgot to commit :( Unfortunately it's not the clean Version 1.4 since there were translation changes in the meanwhile...
- Loading branch information
Showing
17 changed files
with
65 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.3.2-pre1 | ||
1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,29 @@ | ||
#!/bin/bash | ||
make -f Makefile.mingw clean && \ | ||
make -f Makefile.mingw && \ | ||
PROJECT=pidgin-znchelper && \ | ||
WIN32DIR=${PROJECT}-`cat VERSION`-win32 && \ | ||
mkdir -p ${WIN32DIR}/pidgin/plugins && \ | ||
mkdir -p ${WIN32DIR}/pidgin/locale/de/LC_MESSAGES && \ | ||
sed 's/$/\r/' ChangeLog >${WIN32DIR}/ChangeLog.txt && \ | ||
sed 's/$/\r/' README.win32 >${WIN32DIR}/ReadMe.txt && \ | ||
cp src/${PROJECT}.dll ${WIN32DIR}/pidgin/plugins && \ | ||
i586-mingw32msvc-strip --strip-unneeded ${WIN32DIR}/pidgin/plugins/${PROJECT}.dll && \ | ||
cp po/de.gmo ${WIN32DIR}/pidgin/locale/de/LC_MESSAGES/${PROJECT}.mo && \ | ||
rm -f ${WIN32DIR}.zip && \ | ||
cd ${WIN32DIR} && \ | ||
zip -r ../${WIN32DIR}.zip * && \ | ||
cd .. && \ | ||
rm -rf ${WIN32DIR} | ||
set -x | ||
|
||
PROJECT=pidgin-znchelper | ||
WIN32DIR=${PROJECT}-$(cat VERSION)-win32 | ||
|
||
test -f README.win32 || exit | ||
|
||
make -f Makefile.mingw clean || exit | ||
make -f Makefile.mingw || exit | ||
mkdir -p ${WIN32DIR}/pidgin/plugins || exit | ||
sed 's/$/\r/' ChangeLog >${WIN32DIR}/ChangeLog.txt || exit | ||
sed 's/$/\r/' README.win32 >${WIN32DIR}/ReadMe.txt || exit | ||
cp src/${PROJECT}.dll ${WIN32DIR}/pidgin/plugins || exit | ||
#i586-mingw32msvc-strip --strip-unneeded ${WIN32DIR}/pidgin/plugins/${PROJECT}.dll || exit | ||
for f in po/*.po; do | ||
if [ -f $f ]; then | ||
lang=$(basename $f .po) | ||
mkdir -p ${WIN32DIR}/pidgin/locale/${lang}/LC_MESSAGES || exit | ||
cp po/${lang}.gmo ${WIN32DIR}/pidgin/locale/${lang}/LC_MESSAGES/${PROJECT}.mo || exit | ||
fi | ||
done | ||
rm -f ${WIN32DIR}.zip || exit | ||
cd ${WIN32DIR} || exit | ||
zip -r ../${WIN32DIR}.zip * || exit | ||
cd .. || exit | ||
rm -rf ${WIN32DIR} || exit | ||
echo "filename: ${WIN32DIR}.zip" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters