Going to 0.8.8

This commit is contained in:
p.kosyh 2009-08-30 19:58:55 +00:00
parent e238c4bee3
commit 1b85933ed9
9 changed files with 21 additions and 18 deletions

View file

@ -1,4 +1,4 @@
VERSION := \"0.8.7\"
VERSION := \"0.8.8\"
DESTDIR=
BIN=
@ -19,7 +19,7 @@ LUA_LFLAGS=$(shell pkg-config --libs lua5.1)
SDL_CFLAGS=$(shell sdl-config --cflags)
SDL_LFLAGS=$(shell sdl-config --libs) -lSDL_ttf -lSDL_mixer -lSDL_image
CFLAGS += -g -Wall -D_HAVE_ICONV -DRUSSIAN
CFLAGS += -g -Wall -D_HAVE_ICONV #-DRUSSIAN
INSTALLD=echo
INSTALL=echo

View file

@ -1,11 +1,12 @@
VERSION := \"0.8.7\"
VERSION := \"0.8.8\"
DESTDIR=/usr/local
BIN=$(DESTDIR)/bin/
STEADPATH=$(DESTDIR)/share/stead
PREFIX=/usr/local
DESTDIR=
BIN=$(DESTDIR)$(PREFIX)/bin/
STEADPATH=$(DESTDIR)$(PREFIX)/share/stead
THEMESPATH=$(STEADPATH)/themes
GAMESPATH=$(STEADPATH)/games
ICONPATH=$(DESTDIR)/share/pixmaps
ICONPATH=$(PREFIX)/share/pixmaps
LUA_CFLAGS=$(shell pkg-config --cflags lua5.1)
LUA_LFLAGS=$(shell pkg-config --libs lua5.1)

View file

@ -1,5 +1,6 @@
VERSION := \"0.8.7\"
VERSION := \"0.8.8\"
PREFIX=
DESTDIR=
BIN=..\..\bin\\

4
debian/rules vendored
View file

@ -29,7 +29,7 @@ build-stamp: configure-stamp
# Add here commands to compile the package.
rm -rf Rules.make
ln -s Rules.make.system Rules.make
$(MAKE) DESTDIR=/usr BIN=/usr/games STEADPATH=/usr/share/games/stead
$(MAKE) PREFIX=/usr BIN=/usr/games STEADPATH=/usr/share/games/stead
rm -rf Rules.make
#docbook-to-man debian/instead.sgml > instead.1
touch $@
@ -57,7 +57,7 @@ install: build
# Add here commands to install the package into debian/instead.
rm -rf Rules.make
ln -s Rules.make.system Rules.make
$(MAKE) install DESTDIR=$(CURDIR)/debian/instead/usr STEADPATH=$(CURDIR)/debian/instead/usr/share/games/stead BIN=$(CURDIR)/debian/instead/usr/games ICONPATH=$(CURDIR)/debian/instead/usr/share/pixmaps
$(MAKE) install DESTDIR=$(CURDIR)/debian/instead PREFIX=/usr STEADPATH=$(CURDIR)/debian/instead/usr/share/games/stead BIN=$(CURDIR)/debian/instead/usr/games
rm -rf Rules.make

View file

@ -8,7 +8,6 @@ instead.desktop: instead.desktop.in
cat instead.desktop.in | sed -e "s|@BIN|$(BIN)|g" > instead.desktop
install:
install -d -m 0755 $(DESTDIR)/share/applications
install -m 0644 instead.desktop $(DESTDIR)/share/applications/instead.desktop
install -m 0644 instead.desktop $(DESTDIR)/share/applications/instead.desktop
install -d -m 0755 $(DESTDIR)$(PREFIX)/share/applications
install -m 0644 instead.desktop $(DESTDIR)$(PREFIX)/share/applications/instead.desktop

View file

@ -1,6 +1,6 @@
[Desktop Entry]
Encoding=UTF-8
Version=0.8.7
Version=0.8.8
Type=Application
Name=INSTEAD
Name[ru]=INSTEAD

View file

@ -2,6 +2,6 @@ include ../Rules.make
clean:
all:
install:
install -d -m0755 $(DESTDIR)/share/doc/instead
install -m0644 *.jpg *.html *.txt $(DESTDIR)/share/doc/instead
install -d -m0755 $(DESTDIR)$(PREFIX)/share/doc/instead
install -m0644 *.jpg *.html *.txt $(DESTDIR)$(PREFIX)/share/doc/instead

View file

@ -27,7 +27,9 @@
<a:/ask_quit>Quit</a>"
#define ABOUT_MENU \
"Written by Peter Kosyh '2009\n\
"INSTEAD SDL - "VERSION"\n\
\n\
Written by Peter Kosyh '2009\n\
Ported to Windows by Ilja Ryndin\n\
\n\
Homepage:\n\

View file

@ -1247,7 +1247,7 @@ function game_step(self)
return game_life(self);
end
version = "0.8.7";
version = "0.8.8";
game = game {
nam = "INSTEAD -- Simple Text Adventure interpreter v"..version.." '2009 by Peter Kosyh",