summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2016-05-09 23:23:50 -0400
committerDavid Thompson <dthompson2@worcester.edu>2016-05-09 23:23:50 -0400
commit0159a9a426b298ec148e95f0264848f9d7597b52 (patch)
treebe7cc1a46368f69e73c6dc1470af3ee3df2097aa
parente457ce03fc57cc9c2d3979b8bbc747ae6c2b97b7 (diff)
Fix build and add a silly name.
-rw-r--r--Makefile.am30
-rw-r--r--configure.ac2
-rw-r--r--game.scm5
-rw-r--r--gamejam/dummy1
4 files changed, 33 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index 5aa19b8..94e768b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,7 +37,33 @@ moddir=$(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION)
godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/ccache
SOURCES = \
- sly/game.scm
+ game.scm
EXTRA_DIST += \
- pre-inst-env.in
+ pre-inst-env.in \
+ guix.scm \
+ gamejam/dummy \
+ assets/images/bullets.png \
+ assets/images/enemies.xcf \
+ assets/images/chain.xcf \
+ assets/images/db16_v1_analyze.png \
+ assets/images/enemies.png \
+ assets/images/background.png \
+ assets/images/explosion.png \
+ assets/images/player.png \
+ assets/images/background.xcf \
+ assets/images/chain.png \
+ assets/images/background-overlay.png \
+ assets/images/explosion.xcf \
+ assets/images/player.xcf \
+ assets/images/bullets.xcf \
+ assets/sounds/hit.wav \
+ assets/sounds/explosion.wav \
+ assets/sounds/player-shoot.wav \
+ assets/sounds/player-death.wav \
+ assets/music/title-screen.ogg \
+ assets/music/ending.ogg \
+ assets/music/level-2.ogg \
+ assets/music/level-3.ogg \
+ assets/music/level-1.ogg \
+ assets/fonts/kenpixel_mini.ttf
diff --git a/configure.ac b/configure.ac
index 17f3b69..a3131c3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
dnl -*- Autoconf -*-
-AC_INIT(lispgamejam, 0.1.0)
+AC_INIT(lisparuga, 0.1.0)
AC_CONFIG_SRCDIR(gamejam)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability foreign])
diff --git a/game.scm b/game.scm
index 32d896a..0455300 100644
--- a/game.scm
+++ b/game.scm
@@ -15,7 +15,8 @@
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
-(use-modules (ice-9 match)
+(use-modules (ice-9 format)
+ (ice-9 match)
(sly)
(sly actor)
(sly audio)
@@ -1347,7 +1348,7 @@ each time KEY is pressed."
;;; Main
;;;
-(with-window (make-window #:title "binarium"
+(with-window (make-window #:title "lisparuga"
#:resolution scaled-resolution)
(enable-fonts)
(enable-audio)
diff --git a/gamejam/dummy b/gamejam/dummy
new file mode 100644
index 0000000..b8728b2
--- /dev/null
+++ b/gamejam/dummy
@@ -0,0 +1 @@
+Nothing to see here. Just making autoconf happy.