Custom Search
|
r2241 - scripts/trunk
Date: December 27, 2006 Author: fuddl-guest Date: 2006-12-27 17:33:19 +0100 (Wed, 27 Dec 2006) New Revision: 2241 Added: scripts/trunk/warsow-data-prepare.sh scripts/trunk/warsow-prepare.sh Log: prepare scripts for warsow Added: scripts/trunk/warsow-data-prepare.sh =================================================================== --- scripts/trunk/warsow-data-prepare.sh 2006-12-27 16:32:49 UTC (rev 2240) +++ scripts/trunk/warsow-data-prepare.sh 2006-12-27 16:33:19 UTC (rev 2241) @@ -0,0 +1,11 @@ +#!/bin/sh + +VERSION=0.21 + +rm -rf warsow +wget -c http://ftp.club-internet.fr/pub/games/nofrag/warsow/warsow_${VERSION}_linux.tar.gz || exit 1 +tar -xzf warsow_${VERSION}_linux.tar.gz || exit 1 +rm -rf warsow/warsow* warsow/wsw* warsow/libs +mv warsow warsow-data-$VERSION +tar -czf warsow-data_$VERSION.orig.tar.gz warsow-data-$VERSION || exit 1 +svn export svn://svn.debian.org/svn/pkg-games/packages/trunk/warsow-data/debian warsow-data-$VERSION/debian || exit 1 Property changes on: scripts/trunk/warsow-data-prepare.sh ___________________________________________________________________ Name: svn:executable + * Added: scripts/trunk/warsow-prepare.sh =================================================================== --- scripts/trunk/warsow-prepare.sh 2006-12-27 16:32:49 UTC (rev 2240) +++ scripts/trunk/warsow-prepare.sh 2006-12-27 16:33:19 UTC (rev 2241) @@ -0,0 +1,12 @@ +#!/bin/sh + +VERSION=0.21 + +rm -rf sdk +wget -c http://ftp.club-internet.fr/pub/games/nofrag/warsow/warsow_0.21_sdk_fixed.zip || exit 1 +mkdir sdk +unzip -d sdk warsow_${VERSION}_sdk_fixed.zip || exit 1 +rm -rf sdk/docs sdk/mapping sdk/modelling sdk/other +mv sdk warsow-$VERSION +tar -czf warsow_$VERSION.orig.tar.gz warsow-$VERSION || exit 1 +svn export svn://svn.debian.org/svn/pkg-games/packages/trunk/warsow/debian warsow-$VERSION/debian Property changes on: scripts/trunk/warsow-prepare.sh ___________________________________________________________________ Name: svn:executable + * |