mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-16 20:08:04 +02:00
56 lines
1.2 KiB
Makefile
56 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2009 Qi Hardware Inc.
|
|
# Author: Xiangfu Liu <xiangfu@sharism.cc>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=nethack
|
|
PKG_VERSION:=343
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-src.tgz
|
|
PKG_SOURCE_URL:=http://downloads.sourceforge.net/project/nethack/nethack/3.4.3/
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-3.4.3
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/nethack
|
|
SECTION:=games
|
|
CATEGORY:=Games
|
|
DEPENDS:=nethack
|
|
TITLE:=single player dungeon exploration game
|
|
DEPENDS:=+libncurses
|
|
endef
|
|
|
|
define Package/nethack/description
|
|
NetHack is a single player dungeon exploration game
|
|
endef
|
|
|
|
TARGET_CFLAGS+=-I$(STAGING_DIR)/usr/include
|
|
TARGET_LDFLAGS+= -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
|
|
|
define Build/Compile
|
|
(cd $(PKG_BUILD_DIR)/sys/unix; \
|
|
sh setup.sh; \
|
|
cd ../../; \
|
|
export CFLAGS="${TARGET_CFLAGS}";\
|
|
export LDFLAGS="${TARGET_LDFLAGS}";\
|
|
export PREFIX="${PKG_INSTALL_DIR}";\
|
|
make;\
|
|
)
|
|
endef
|
|
|
|
define Package/nethack/install
|
|
$(INSTALL_DIR) \
|
|
$(1)/usr/bin \
|
|
|
|
$(INSTALL_BIN) \
|
|
$(PKG_BUILD_DIR)/src/nethack \
|
|
$(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,nethack))
|