2010-07-14 10:57:22 +03:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=frotz
|
|
|
|
PKG_VERSION:=2.43
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2011-10-12 16:25:02 +03:00
|
|
|
define Package/frotz/Default
|
2010-07-14 12:23:00 +03:00
|
|
|
SECTION:=games
|
|
|
|
CATEGORY:=Games
|
2011-10-12 16:25:02 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/frotz
|
|
|
|
TITLE:=frotz
|
2010-07-14 12:23:00 +03:00
|
|
|
DEPENDS:=+libncurses
|
2010-07-14 10:57:22 +03:00
|
|
|
URL:=http://frotz.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
2011-10-12 16:25:02 +03:00
|
|
|
define Package/frotz-games
|
|
|
|
TITLE:=frotz-games
|
|
|
|
SECTION:=games
|
|
|
|
CATEGORY:=Games
|
|
|
|
DEPENDS:=+frotz
|
|
|
|
URL:=http://ifarchive.org/if-archive/games/zcode/
|
|
|
|
endef
|
|
|
|
|
2010-07-14 10:57:22 +03:00
|
|
|
MAKE_VARS +=CONFIG_DIR=/etc \
|
|
|
|
INCL=-I$(STAGING_DIR)/usr/include \
|
|
|
|
LIB=-L$(STAGING_DIR)/usr/lib \
|
|
|
|
SOUND_DEV=/dev/dsp \
|
|
|
|
SOUND_DEFS=-DOSS_SOUND \
|
|
|
|
CURSES=-lncurses \
|
|
|
|
CURSES_DEF=-DUSE_NCURSES_H
|
|
|
|
|
|
|
|
define Package/frotz/description
|
|
|
|
A Portable Z-Machine Interpreter
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/frotz/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/frotz $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
2011-10-12 16:25:02 +03:00
|
|
|
define Package/frotz-games/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/games/zcode/
|
|
|
|
$(CP) $(FILES_DIR)/* $(1)/usr/games/zcode/
|
|
|
|
endef
|
|
|
|
|
2010-07-14 10:57:22 +03:00
|
|
|
$(eval $(call BuildPackage,frotz))
|
2011-10-12 16:25:02 +03:00
|
|
|
$(eval $(call BuildPackage,frotz-games))
|