mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-16 18:54:04 +02:00
new package: brainless: a chess playing program written completely in ANS Forth
This commit is contained in:
parent
4e800223f6
commit
bb6e98b383
64
brainless/Makefile
Normal file
64
brainless/Makefile
Normal file
@ -0,0 +1,64 @@
|
||||
#
|
||||
# Copyright (C) 2011 David Kuehling <dvdkhlng TA gmx TOD de>
|
||||
#
|
||||
# License GPLv2 or later. NO WARRANTY.
|
||||
#
|
||||
# OpenWRT package for Brainless chess playing program
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=brainless
|
||||
PKG_VERSION:=0.1.1
|
||||
PKG_RELEASE:=1
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=@SF/forth-brainless
|
||||
PKG_MD5SUM:=38a4ac4d5b984e1b67b0cdd60b484b02
|
||||
PKG_INSTALL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/brainless/Default
|
||||
SECTION:=games
|
||||
CATEGORY:=Games
|
||||
TITLE:=Brainless (a chess playing program)
|
||||
URL:=https://sourceforge.net/projects/forth-brainless/
|
||||
DEPENDS:=+gforth
|
||||
endef
|
||||
|
||||
define Package/brainless/Default/description
|
||||
Brainless is a chess-playing program written in ANS Forth. It uses the
|
||||
Forth terminal for interacting with the user, making use of ANSI color
|
||||
terminals and Utf-8 chess-piece glyphs for quasi-graphical display.
|
||||
endef
|
||||
|
||||
define Package/brainless
|
||||
$(call Package/brainless/Default)
|
||||
endef
|
||||
|
||||
define Package/brainless/description
|
||||
$(call Package/brainless/Default/description)
|
||||
endef
|
||||
|
||||
|
||||
# searches for fusion* headers that are not present. different version?
|
||||
CONFIGURE_ARGS += \
|
||||
--with-gforth=/usr/bin/gforth
|
||||
|
||||
define Build/Configure
|
||||
$(call Build/Configure/Default)
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/brainless/install
|
||||
$(INSTALL_DIR) $(1)/usr
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/* $(1)/usr/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,brainless))
|
||||
|
||||
# The following comments configure the Emacs editor. Just ignore them.
|
||||
# Local Variables:
|
||||
# compile-command: "make -C ~/h/src/qi/openwrt-xburst package/brainless/compile -j2 V=99"
|
||||
# End:
|
Loading…
Reference in New Issue
Block a user