Root/burgerspace/Makefile

1#
2# This is free software, licensed under the GNU General Public License v2.
3# See /LICENSE for more information.
4#
5
6include $(TOPDIR)/rules.mk
7
8PKG_NAME:=burgerspace
9PKG_VERSION:=1.9.0
10
11PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-current.tar.gz
12PKG_SOURCE_URL:=http://perso.b2b2c.ca/sarrazip/dev/
13
14PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
15PKG_RELEASE:=1
16
17include $(INCLUDE_DIR)/package.mk
18
19define Package/burgerspace
20  TITLE:=burgerspace
21  URL:=http://perso.b2b2c.ca/sarrazip/dev/burgerspace.html
22  DEPENDS:=+libsdl +libsdl-ttf @BROKEN
23endef
24
25define Package/burgerspace/description
26a hamburger-smashing video game. It is a clone of the 1982 BurgerTime video game by Data East.
27endef
28
29CONFIGURE_ARGS +=
30TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/SDL
31TARGET_LDFLAGS+= -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
32
33define Package/burgerspace/install
34    $(INSTALL_DIR) $(1)/usr/bin/
35    $(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/burgerspace $(1)/usr/bin/
36endef
37
38$(eval $(call BuildPackage,burgerspace))
39

Archive Download this file



interactive